Skip to content

Instantly share code, notes, and snippets.

@MksYi
Created August 14, 2018 09:16
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 MksYi/c99e5349fc3633b1af70cf9d04ca81fd to your computer and use it in GitHub Desktop.
Save MksYi/c99e5349fc3633b1af70cf9d04ca81fd to your computer and use it in GitHub Desktop.
Firebase 更新測試
#!/usr/bin/python3
import firebase_admin
from firebase_admin import credentials
from firebase_admin import firestore
cred = credentials.Certificate("stust-game-firebase-adminsdk-z8f9e-565f1cf637.json")
firebase_admin.initialize_app(cred)
db = firestore.client()
doc_ref = db.collection('Q1', 'DOC1', 'Q2').document('DOC2')
#Method 1
doc_ref.update({
'工作': '魔法師',
})
#Method 2
data = {
'工作': '魔法師',
}
doc_ref.update(data)
print('Done')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment