Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cbrannen9a
Created January 4, 2019 12:35
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/24a3f0296a9843463b0ddf321a233a91 to your computer and use it in GitHub Desktop.
Save cbrannen9a/24a3f0296a9843463b0ddf321a233a91 to your computer and use it in GitHub Desktop.
Get data from Firestore
import firebase_admin
import google.cloud
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'users').limit(2)
try:
docs = doc_ref.get()
for doc in docs:
print(u'Doc Data:{}'.format(doc.to_dict()))
except google.cloud.exceptions.NotFound:
print(u'Missing data')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment