mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-14 02:34:27 +00:00
8 lines
201 B
Python
8 lines
201 B
Python
from datetime import datetime
|
|
from datetime import timezone
|
|
|
|
from dateutil.parser import isoparse
|
|
|
|
|
|
def parse_isoformat(isodate: str) -> datetime:
|
|
return isoparse(isodate).astimezone(timezone.utc)
|