woom.util.WoomDate.strptime#
- classmethod WoomDate.strptime(date_string, format)#
Convert string argument to datetime.
This method is not implemented; calling it will raise NotImplementedError. Use pd.to_datetime() instead.
- Parameters:
See also
pd.to_datetimeConvert argument to datetime.
datetime.datetime.strptimeReturn a datetime corresponding to a string representing a date and time, parsed according to a separate format string.
datetime.datetime.strftimeReturn a string representing the date and time, controlled by an explicit format string.
Timestamp.isoformatReturn the time formatted according to ISO 8601.
Examples
>>> pd.Timestamp.strptime("2023-01-01", "%d/%m/%y") Traceback (most recent call last): NotImplementedError