I opened an issue for this, but what is the recomm...
# singer-tap-development
s
I opened an issue for this, but what is the recommended way to handle a timestamp replication key that is
epoch
encoded? It isn't parseable with
dateutil.parser
which is what the SDK uses, but it is with
datetime.fromtimestamp
.
Copy code
>>> from datetime import datetime
>>> ts = 1634606164.000200
>>> datetime.fromtimestamp(ts)
datetime.datetime(2021, 10, 18, 21, 16, 4, 200)
https://gitlab.com/meltano/sdk/-/issues/262