flake8-datetimez
A plugin for flake8 to ban the usage of unsafe naive datetime class.
Consider using Ruff instead
The checks of this plugin have been adopted into Ruff
as its flake8-datetimez (DTZ) rule set.
Many thanks to the Ruff project for carrying these rules forward — their
implementation is faster, more actively maintained, and handles more cases than
this plugin does.
If you are starting a new project, or already run Ruff, please prefer it:
# pyproject.toml
[tool.ruff.lint]
extend-select = ["DTZ"]
This plugin remains for codebases that are still on flake8, and is maintained on a best-effort basis for backward compatibility — keeping the existing rules working across the supported Python and flake8 versions, rather than growing new ones.
List of warnings
-
DTZ001 : The use of
datetime.datetime()withouttzinfoargument is not allowed. -
DTZ002 : The use of
datetime.datetime.today()is not allowed. Usedatetime.datetime.now(tz=)instead. -
DTZ003 : The use of
datetime.datetime.utcnow()is not allowed. Usedatetime.datetime.now(tz=)instead. -
DTZ004 : The use of
datetime.datetime.utcfromtimestamp()is not allowed. Usedatetime.datetime.fromtimestamp(, tz=)instead. -
DTZ005 : The use of
datetime.datetime.now()withouttzargument is not allowed. -
DTZ006 : The use of
datetime.datetime.fromtimestamp()withouttzargument is not allowed. -
DTZ007 : The use of
datetime.datetime.strptime()without %z must be followed by.replace(tzinfo=). -
DTZ011 : The use of
datetime.date.today()is not allowed. Usedatetime.datetime.now(tz=).date()instead. -
DTZ012 : The use of
datetime.date.fromtimestamp()is not allowed. Usedatetime.datetime.fromtimestamp(, tz=).date()instead. -
DTZ901 : The use of
datetime.datetime.minordatetime.datetime.maxwithout.replace(tzinfo=)is not allowed.
About .astimezone()
Calling .astimezone() on a naive datetime attaches the local timezone to it, so it is
accepted as a way to resolve DTZ001, DTZ002, DTZ005, DTZ006 and DTZ007:
datetime.datetime.now().astimezone() # ok
datetime.datetime(2000, 1, 1).astimezone() # ok
It is deliberately not accepted for the remaining warnings:
-
DTZ003, DTZ004 :
utcnow()andutcfromtimestamp()return a UTC wall clock. Reading that value as local time shifts the instant, soutcnow().astimezone()is off by the local UTC offset, which is exactly what these two warnings are meant to prevent. -
DTZ011, DTZ012 :
datetime.datehas no.astimezone()at all. -
DTZ901 :
datetime.minanddatetime.maxoverflow when converted to another timezone.
Install
Install with pip
$ pip install flake8-datetimez
Requirements
- Python 3.8 or above (tested on 3.8 through 3.14)
- flake8 3.0.0 or above
Running the tests
The test suite runs against every supported Python version with tox. No interpreter has to be installed beforehand, they are downloaded automatically by uv:
$ uvx --with tox-uv tox
That covers py38 through py314 plus a lint environment, and it is exactly
what CI runs, one job per environment. To run a single environment, or the tests
with the current interpreter only:
$ uvx --with tox-uv tox -e py314
$ python -m unittest discover -p "test_*.py" -v
Linting and formatting
The code is formatted and linted with ruff:
$ uvx ruff format .
$ uvx ruff check .
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flake8_datetimez-26.8.1.tar.gz.
File metadata
- Download URL: flake8_datetimez-26.8.1.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d060f3d2d4092e0d82509e00643745e68a9d7ad00842db5ff55a2dc25c0d86c8
|
|
| MD5 |
77f4b66c6148a387d5d089350666b496
|
|
| BLAKE2b-256 |
79ffb98f28ae220fd550f779f11153b9d9d05ee2faa843d1f3222999a606cccb
|
File details
Details for the file flake8_datetimez-26.8.1-py3-none-any.whl.
File metadata
- Download URL: flake8_datetimez-26.8.1-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d85ea6a934dbe46703867348c7c7c626c3ccd06dfd2c06b90c8001c3ad0e64ef
|
|
| MD5 |
5d0be95350b825cc0e7129b9f70f93f8
|
|
| BLAKE2b-256 |
64d9730eef56d8e1388a1c01eb21e0119e16a2438903ac3f5f351834f7372244
|