- API reference
- pandas arrays, scalars, and data types
- pandas.Times...
pandas.Timestamp.utcfromtimestamp#
- classmethodTimestamp.utcfromtimestamp(ts)#
Construct a timezone-aware UTC datetime from a POSIX timestamp.
Notes
Timestamp.utcfromtimestamp behavior differs from datetime.utcfromtimestampin returning a timezone-aware object.
Examples
>>>pd.Timestamp.utcfromtimestamp(1584199972)Timestamp('2020-03-14 15:32:52+0000', tz='UTC')
On this page