This repository has been archived by the owner on Jun 17, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle cases where parse_timestamp is passed an int. func now handles datetime, int, float, str types in the following formats (with specific examples): - 'YYYY-MM-DD HH:mm:ss': '2020-08-20 21:32:51' - 'YYYY-MM-DD HH:mm:ss UTC': '2020-08-20 21:32:51 UTC' - 'YYYYMMDD': '20200820', int(20200820) - epoch (with and without milliseconds decimal): int(1590673128), float(1590673128), float(1590673128.02), str(1590673128.02), str(1590673128) - 'YYYY-MM-DDTHH:mm:ss': '2020-08-20T21:32:51' - 'YYYYMMDDTHHmmssZ': '20160219T224322Z'
- Loading branch information