作者:VEACEN晨k | 来源:互联网 | 2022-12-25 11:41
我看到有一个Timestamp对象,但它似乎不起作用。使用Python 3.6
$ pip install protobuf3
在python中:
from google.protobuf.timestamp_pb2 import Timestamp
timestamp = Timestamp()
timestamp.GetCurrentTime()
什么也没退。我究竟做错了什么?
1> P Moran..:
ARRGGG我认为有一个虚拟的ENV问题。现在可以使用!
Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:54:40) [MSC v.1900 64 bit (AMD64)] on win32
>>> from google.protobuf.timestamp_pb2 import Timestamp
>>> timestamp = Timestamp()
>>> timestamp.GetCurrentTime()
>>> print(timestamp)
seconds: 1521497361
nanos: 600455000
>>>timestamp
seconds: 1521497361
nanos: 600455000