Metadata-Version: 2.4
Name: django-security-tools
Version: 0.0.1
Summary: A set of security tools for Django.
Project-URL: Homepage, https://github.com/dreamxinxcode/django-security-tools
Project-URL: Issues, https://github.com/dreamxinxcode/django-security-tools/issues
Author-email: Brandon Lecky <brandon@dreamincode.dev>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

A set of security tools for Django.

# Install the package:

`pip install django-security-tools`

# Add the app to INSTALLED_APPS:

```
INSTALLED_APPS = [
    # Other apps...
    'django_security_tools',
]
```

# Apply migrations:

`python manage.py migrate`

# Add secret admin route

urls.py
```
from django.contrib import admin
from django.urls import path
from django_security_tools.views import admin_honeypot

urlpatterns = [
    path('admin/', admin_honeypot, name='admin_honeypot'),
    path('secret/', admin.site.urls), # Your real admin
]
```