Python3 で Cloud Firestore のデータを削除 (Delete)
こちらで作成したデータのひとつを削除します。
Python3 で Cloud Firestore のデータを作成 (Create)
firestore_delete.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]
#
print(key_in)
#
cred = credentials.ApplicationDefault()
firebase_admin.initialize_app(cred, {
'projectId': 'my-project-2020-01-22',
})
db = firestore.client()
#
db.collection('cities').document(key_in).delete()
#
sys.stderr.write("*** 終了 ***\n")
# ------------------------------------------------------------------
実行コマンド
export GOOGLE_APPLICATION_CREDENTIALS="***.json"
./firestore_delete.py t0924
次のバージョンで確認しました。
$ python --version
Python 3.8.6
Author And Source
この問題について(Python3 で Cloud Firestore のデータを削除 (Delete)), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/80b1e8474a9d8397cabb著者帰属:元の著者の情報は、元の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 .