A reusable Django package for quick login and signup endpoints with optional JWT authentication
Project description
Django Quick Auth
A reusable Django package that provides quick and easy authentication endpoints for login and signup functionality with optional JWT authentication support. Simplify your Django project's authentication system without writing boilerplate code.
Features
- Ready-to-use login and signup endpoints
- Optional JWT authentication support
- Customizable user model
- Easy integration with existing Django projects
- Fully configurable through settings
Installation
pip install tc-django-quick-auth
Important Note: While the package is installed as
tc-django-quick-auth, you'll reference it in your Python code and Django settings asdjango_quick_auth. This follows Python package conventions where PyPI package names use hyphens, but Python module names use underscores.
Configuration
1. Add to INSTALLED_APPS
Add django_quick_auth to your INSTALLED_APPS in your Django project's settings:
INSTALLED_APPS = [
# ...
'django_quick_auth',
]
2. Configure User Model (Optional)
If you want to use the custom QuickAuthUser model provided by this package, add this to your settings:
AUTH_USER_MODEL = 'django_quick_auth.QuickAuthUser'
Note: If you're adding this to an existing project that already has migrations with the default Django User model, you'll need to create a migration strategy or start with a fresh database.
3. URL Configuration
Include the authentication URLs in your project's urls.py:
from django.urls import path, include
urlpatterns = [
# ...
path('api/auth/', include('django_quick_auth.urls')),
# ...
]
4. JWT Configuration (Optional)
If you want to use JWT authentication, configure the JWT settings in your project settings:
# JWT Settings
QUICK_AUTH = {
'USE_JWT': True,
'JWT_SECRET_KEY': 'your-secret-key',
'JWT_ALGORITHM': 'HS256',
'JWT_EXPIRATION_DELTA': 24 * 60 * 60, # Token expiry time in seconds (24 hours)
'JWT_REFRESH_EXPIRATION_DELTA': 7 * 24 * 60 * 60, # Refresh token expiry time in seconds (7 days)
}
5. Run Migrations
After configuring your settings, run migrations to create the necessary database tables:
python manage.py makemigrations
python manage.py migrate
Usage
Authentication Endpoints
Once configured, the package provides the following endpoints:
-
POST /api/auth/signup/ - Register a new user
{ "username": "newuser", "email": "user@example.com", "password": "securepassword" }
-
POST /api/auth/login/ - Login with existing credentials
{ "username": "existinguser", "password": "securepassword" }
JWT Authentication
If JWT is enabled, successful login/signup will return:
{
"token": "your.jwt.token",
"refresh_token": "your.refresh.token",
"user": {
"id": 1,
"username": "username",
"email": "user@example.com"
}
}
Customization
Custom User Fields
You can extend the QuickAuthUser model by creating your own model that inherits from it:
from django_quick_auth.models import QuickAuthUser
from django.db import models
class MyCustomUser(QuickAuthUser):
phone_number = models.CharField(max_length=15, blank=True)
date_of_birth = models.DateField(null=True, blank=True)
# Don't forget to update AUTH_USER_MODEL in settings to point to your custom model
Custom Serializers
You can override the default serializers by specifying them in your settings:
QUICK_AUTH = {
# Other settings...
'USER_SERIALIZER': 'myapp.serializers.MyCustomUserSerializer',
'LOGIN_SERIALIZER': 'myapp.serializers.MyCustomLoginSerializer',
'SIGNUP_SERIALIZER': 'myapp.serializers.MyCustomSignupSerializer',
}
Testing
To run the tests for this package:
pip install -e .
pip install pytest pytest-django
pytest
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -am 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
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 tc_django_quick_auth-0.1.1.tar.gz.
File metadata
- Download URL: tc_django_quick_auth-0.1.1.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2844c6499a0fcd5085b0118d48b1d6d5e43c31e586b60c6f32e0dc3bf4a4dfad
|
|
| MD5 |
4fd9f22a22f890e9ae61f745274bb002
|
|
| BLAKE2b-256 |
d5f0e21dea64fa586a95c2041bb075d5ee46d825d4f04e73f37add561658acf7
|
File details
Details for the file tc_django_quick_auth-0.1.1-py3-none-any.whl.
File metadata
- Download URL: tc_django_quick_auth-0.1.1-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66ca7d645f4bf2dfaf90e6a0ad04790b31e1853f8aededa8af59a1b5735c3272
|
|
| MD5 |
d94e78a47dfd7b3543cc402de3597b93
|
|
| BLAKE2b-256 |
5360ea340e1c4e8c71f593241faa30e92e01bb7c22e2265222f820cbb73036f6
|