a python package for type checking the urls and associated views.
Project description
Django UrlConf Checks
Static checker that keeps your URL patterns and view annotations in sync, using Django’s built-in check framework.
Key features
- Detects mismatches between URL converters/default kwargs and view annotations (ints, UUIDs, container generics, etc.).
- Works as a Django system check (
manage.py check) or standalone CLI. - Honors custom converters and fine-grained silencing per view.
- Pre-commit friendly; CI-ready with machine-readable output.
Installation
pip install django-urlconfchecks
Compatibility:
| Python | Django |
|---|---|
| 3.10–3.12 | 4.2 – <6.1 |
| 3.13 | 5.1.3 – <6.1 |
| 3.14 | 5.2.8 – <6.1 |
Quick start
-
Install:
pip install django-urlconfchecks -
From your project root (where
manage.pylives):urlconfchecks- Or target a specific module:
urlconfchecks --urlconf myproj.urls
- Or target a specific module:
-
Optional: add defaults in
pyproject.toml:[tool.urlconfchecks] quiet = true format = "json" silenced_views = { "myproj.views.legacy_view" = "E002" }
CLI flags always override these defaults.
Usage
As a Django app
Add django_urlconfchecks to your INSTALLED_APPS list in your settings.py file.
INSTALLED_APPS = [
...
'django_urlconfchecks',
]
As a command line tool
Run this command from the root of your project, were manage.py is located:
$ urlconfchecks --help
Usage: urlconfchecks [OPTIONS]
Check all URLConfs for errors.
Options:
--version
-u, --urlconf PATH Specify the URLconf to check.
-q, --quiet Suppress human-readable output; exit codes still set.
-f, --format TEXT Output format. Supported: json.
--install-completion Install completion for the current shell.
--show-completion Show completion for the current shell, to copy it or
customize the installation.
--help Show this message and exit.
As a pre-commit hook
Add the following to your .pre-commit-config.yaml file:
- repo: https://github.com/AliSayyah/django-urlconfchecks
rev: v0.13.1
hooks:
- id: django-urlconfchecks
For more information, see the usage documentation.
What it catches (example)
# urls.py
from django.urls import path
from . import views
urlpatterns = [
path('articles/<str:year>/', views.year_archive),
path('articles/<int:year>/<int:month>/', views.month_archive),
path('articles/<int:year>/<int:month>/<slug:slug>/', views.article_detail),
]
# views.py
def year_archive(request, year: int):
pass
def month_archive(request, year: int, month: int):
pass
def article_detail(request, year: int, month: int, slug: str):
pass
Output:
(urlchecker.E002) For parameter `year`, annotated type int does not match expected `str` from urlconf
JSON (--format json):
{
"errors": [
{
"id": "urlchecker.E002",
"message": "View myproj.views.year_archive for parameter `year`, annotated type int does not match expected `str` from urlconf",
"obj": "<URLPattern 'articles/<str:year>/'>",
"hint": null
}
],
"warnings": [],
"total_errors": 1,
"total_warnings": 0
}
Credits
- Luke Plant for providing the idea and the initial code.
- This package was created with Cookiecutter and the waynerv/cookiecutter-pypackage project template.
Project details
Release history Release notifications | RSS feed
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 django_urlconfchecks-0.13.1.tar.gz.
File metadata
- Download URL: django_urlconfchecks-0.13.1.tar.gz
- Upload date:
- Size: 43.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
495f5b76cf8e76ee17cd80c904e2361e267165f94971340f845915769174479c
|
|
| MD5 |
c2ead61c520aa1b53f0eed9e137260c8
|
|
| BLAKE2b-256 |
7a34f20ed8ac98e483e55271b7736e78ded1ab28ad03bb3212622ad91721ccf5
|
File details
Details for the file django_urlconfchecks-0.13.1-py3-none-any.whl.
File metadata
- Download URL: django_urlconfchecks-0.13.1-py3-none-any.whl
- Upload date:
- Size: 37.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4ebd28f309baa3285173a955fb0319dd0db86e2407783673f800536e523d85b
|
|
| MD5 |
6b46e3c66f854b45def4541e0c7bfcea
|
|
| BLAKE2b-256 |
e885856fbf4f0a485b0da02a328001f50d7b481a5922932d88e0ad3041cebc61
|