In Python, I need to set a timestamp field in a google-cloud firestore document.
I know that the firestore timestamp field shall be set using google.api_core.datetime_helpers.DatetimeWithNanoseconds, which is a subclass of Datetime
I need to set the now() timestamp with a specified minute field and dial it back by certain hours as given below
'cursor_specs' = {
# specs to construct the next cursor
'minute_tick': 0,
'hours_dial_back': 1,
},
Because DatetimeWithNanoseconds is a subclass of Datetime and supposedly inherits all its function, so I tried to use now() and replace() directly with DatetimeWithNanoseconds
from google.api_core.datetime_helpers import DatetimeWithNanoseconds
time_cursor = DatetimeWithNanoseconds.now().replace(minute=cursor_specs['minute_tick'],
second=0, microsecond=0
) - timedelta(hours=cursor_specs['hours_dial_back']
fs_model = fs.document(model["name"]).set({'time_cursor': time_cursor})
It failed with an error
File "/usr/local/lib/python3.8/site-packages/google/cloud/firestore_v1/_helpers.py", line 219, in <dictcomp>
return {key: encode_value(value) for key, value in values_dict.items()}
File "/usr/local/lib/python3.8/site-packages/google/cloud/firestore_v1/_helpers.py", line 173, in encode_value
return document.Value(timestamp_value=value.timestamp_pb())
File "/usr/local/lib/python3.8/site-packages/google/api_core/datetime_helpers.py", line 271, in timestamp_pb
nanos = self._nanosecond or self.microsecond * 1000
AttributeError: _nanosecond