Skip to content

Instantly share code, notes, and snippets.

@cbrannen9a
Created January 4, 2019 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbrannen9a/9ac70121df4c4823a234be8e5e25fa01 to your computer and use it in GitHub Desktop.
Save cbrannen9a/9ac70121df4c4823a234be8e5e25fa01 to your computer and use it in GitHub Desktop.
Checking data from firestore
import firebase_admin
from firebase_admin import credentials, firestore
cred = credentials.Certificate("./ServiceAccountKey.json")
app = firebase_admin.initialize_app(cred)
store = firestore.client()
doc_ref = store.collection(u'COLLECTION_TO_CHECK')
data = []
docs = doc_ref.get()
for doc in docs:
data.append(doc.to_dict())
print(len(data))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment