Get a DateTime instance for the current date and time in UTC.
(cls)
| 182 | |
| 183 | @classmethod |
| 184 | def utcnow(cls) -> Self: |
| 185 | """ |
| 186 | Get a DateTime instance for the current date and time in UTC. |
| 187 | """ |
| 188 | return cls.now(UTC) |
| 189 | |
| 190 | @classmethod |
| 191 | def today(cls) -> Self: |