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
In the request for trips, I get duration information (ex in the drivingDuration field) in a datetime.time format, which should be reserved for a time of the day. I would assume this would throw errors for duration more than 24 hours but I think the API happens to return only duration < 24.
It is really annoying since I can't process the data directly since no operation are supported between datetime.time objects. It would be great if duration could be parsed into a datetime.timedelta instead,.
The text was updated successfully, but these errors were encountered:
In the request for
trips
, I get duration information (ex in the drivingDuration field) in adatetime.time
format, which should be reserved for a time of the day. I would assume this would throw errors for duration more than 24 hours but I think the API happens to return only duration < 24.It is really annoying since I can't process the data directly since no operation are supported between
datetime.time
objects. It would be great if duration could be parsed into adatetime.timedelta
instead,.The text was updated successfully, but these errors were encountered: