pandas / 1.4.0 / reference / api / pandas.timestamp.today.html /

pandas.Timestamp.today

classmethod Timestamp. today ( cls, tz=None )

Return the current time in the local timezone. This differs from datetime.today() in that it can be localized to a passed timezone.

Parameters
tz :str or timezone object, default None

Timezone to localize to.

Examples

>>> pd.Timestamp.today()    
Timestamp('2020-11-16 22:37:39.969883')

Analogous for pd.NaT:

>>> pd.NaT.today()
NaT

© 2008–2022, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/1.4.0/reference/api/pandas.Timestamp.today.html