Source code for saf.utils.dt

# Copyright 2021-2023 VMware, Inc.
# SPDX-License-Identifier: Apache-2.0
"""
Date and time related utilities.
"""
from __future__ import annotations

from datetime import datetime
from datetime import timezone


[docs]def utcnow() -> datetime: """ Return the current date and time with the timezone set to UTC. """ return datetime.now(tz=timezone.utc)