pandas.Timestamp.utcfromtimestamp — pandas 2.2.3 documentation (original) (raw)

classmethod Timestamp.utcfromtimestamp(ts)#

Construct a timezone-aware UTC datetime from a POSIX timestamp.

Notes

Timestamp.utcfromtimestamp behavior differs from datetime.utcfromtimestamp in returning a timezone-aware object.

Examples

pd.Timestamp.utcfromtimestamp(1584199972) Timestamp('2020-03-14 15:32:52+0000', tz='UTC')

On this page

Show Source