I want to Import the data from my firestore to Cloud Function and do some manipulation in python language. So far I have studied the documentation but it is not much helpful Documentation.
The problem is this-->
import firebase_admin
from firebase_admin import credentials
from firebase_admin import firestore
//Use a service account
**cred = credentials.Certificate('path/to/serviceAccount.json')**
firebase_admin.initialize_app(cred)
db = firestore.client()
Where will I store this file "path/to/serviceAccount.json", I can only see two files on my cloud function called Main.py and requirement.