Python3 で Cloud Firestore のデータを更新 (Update)
こちらで作成したデータを更新します。
Python3 で Cloud Firestore のデータを作成 (Create)
firestore_update.py
#! /usr/bin/python
#
import sys
import firebase_admin
from firebase_admin import credentials
from firebase_admin import firestore
# ------------------------------------------------------------------
sys.stderr.write("*** 開始 ***\n")
#
key_in = sys.argv[1]
population_in = int(sys.argv[2])
#
print("%s\t%d" % (key_in, population_in))
#
project = 'project-aaa'
#
cred = credentials.ApplicationDefault()
firebase_admin.initialize_app(cred, {
'projectId': project,
})
db = firestore.client()
#
city_ref = db.collection('cities').document(key_in)
city_ref.update({'population': population_in})
#
sys.stderr.write("*** 終了 ***\n")
# ------------------------------------------------------------------
実行コマンド
export GOOGLE_APPLICATION_CREDENTIALS="***.json"
./firestore_update.py t0922 98456200
次のバージョンで確認しました。
$ python --version
Python 3.8.6
Author And Source
この問題について(Python3 で Cloud Firestore のデータを更新 (Update)), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/92fc4643ba3e6dbf0893著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .