You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be excellent to be able to include 3 digit day-of-year support for date formats.
For example, using datetime
In [14]: datetime.datetime.strptime("2016-360","%Y-%j")
Out[14]: datetime.datetime(2016, 12, 25, 0, 0)
The equivalent with arrow could be
arrow.get("2016-360")
For background, most of the datetimes I work with for spacecraft telemetry timestamping utilizes the day-of-year format since it is is pretty locale agnostic (2016/12/11 vs 2016/11/12).
The text was updated successfully, but these errors were encountered:
It would be excellent to be able to include 3 digit day-of-year support for date formats.
For example, using
datetime
The equivalent with
arrow
could beFor background, most of the datetimes I work with for spacecraft telemetry timestamping utilizes the day-of-year format since it is is pretty locale agnostic (2016/12/11 vs 2016/11/12).
The text was updated successfully, but these errors were encountered: