datetime

3 posts tagged “datetime”.

  1. 2024
  2. Convert a datetime object to UTC without using pytz

    I wanted to convert a datetime object (from GitPython) to UTC without adding the dependency.

    1 min read
  3. Fixes for datetime UTC warnings in Python

    I was getting the following warning for one of my Python test suites: I also saw a deprecation warning elsewhere for my usage of .

    1 min read
  4. Generating a calendar week grid with the Python Calendar module

    I needed to generate a grid calendar that looks like this (design by Natalie Downe): The Python standard library calendar module has a utility function that really helps here: Outputs:

    1 min read