如何使用Python的SDK在Firestore上编写位置,引用和时间戳数据类型?

时间:2018-06-04 06:08:08

标签: python python-3.x firebase nosql google-cloud-firestore

文档甚至解释了如何编写以下数据类型:

data = {
  u'stringExample': u'Hello, World!',
  u'booleanExample': True,
  u'numberExample': 3.14159265,
  u'dateExample': datetime.datetime.now(),
  u'arrayExample': [5, True, u'hello'],
  u'nullExample': None,
  u'objectExample': {
    u'a': 5,
    u'b': True
  }
}

我正在将Mongo数据库集合迁移到FireStore。

到目前为止,这是我的代码:

import firebase_admin
from firebase_admin import credentials
from firebase_admin import firestore

def initialize_firestore():
  cred = credentials.Certificate('admin.json')
  app = firebase_admin.initialize_app(cred)
  db = firestore.client()
  return db

db.collection('My_Collection').document('desired_iD').set('Document_to_write')

我想写一份带有参考和位置字段以及自定义日期的文档。

1 个答案:

答案 0 :(得分:1)

得到回复(res)&初始化字典(Document_to_write):

Document_to_write['date_type'] = datetime.datetime.strptime(res['created'], "date format in string")
Document_to_write['reference_type'] = db.document(u'Collection_Name/'+res['collection_id'])
Document_to_write['location_type'] = firestore.GeoPoint(res['latitude'], res['longitude'])

按照选择的方法保存。