from datetime import datetime from zoneinfo import ZoneInfo utc = ZoneInfo('UTC') def real_utc_now() -> datetime: return datetime.now(tz=utc)