DRF middleware to wrap all API responses
Project description
DRF Response Wrapper
A Django REST Framework middleware that automatically wraps all API responses into a consistent format.
No need to modify your views or APIView classes.
🚀 Features
- Standardized success & error responses
- Works with all DRF APIViews
- Simple integration: just add middleware
- No changes needed in your views
📦 Installation
Install the package from PyPI:
pip install drf-response-wrapper
⚙️ Usage / User Guide
1️⃣ Add Middleware
Open your Django project's settings.py and add the middleware:
MIDDLEWARE = [
# Other middlewares
"drf_response_wrapper.middleware.APIResponseWrapperMiddleware",
]
This middleware automatically wraps all DRF API responses, so you don't need to manually call
success_response()orerror_response()in your views.
2️⃣ Example API Responses
Success response example:
{
"success": true,
"message": "Request successful",
"status": 200,
"data": {
"id": 1,
"name": "Example Item"
}
}
Error response example:
{
"success": false,
"message": "Something went wrong",
"status": 400,
"data": {}
}
3️⃣ Notes / Tips
- Works with any DRF APIView returning
Response. - Can be used with
BaseAPIViewor standardAPIView. - Ensures all API responses follow the same structure automatically.
- No changes needed in your existing views.
- Compatible with existing DRF projects—just add middleware.
- Ideal for projects where consistent API response format is required.
📝 License
MIT License
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 drf_response_wrapper-0.1.1.tar.gz.
File metadata
- Download URL: drf_response_wrapper-0.1.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
602190ecc6c8d8e83a3d5b8533f4d33b5315787b6f418bf63c97b70d51873bd5
|
|
| MD5 |
c1d63e0ba7efdc7d0546769941880d94
|
|
| BLAKE2b-256 |
0974f092765d0cd2b7a9c47b7cebdab39e313fbb242eb76e705e8264220c7c1d
|
File details
Details for the file drf_response_wrapper-0.1.1-py3-none-any.whl.
File metadata
- Download URL: drf_response_wrapper-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb9619afce77d2ae29bc02fb84886cd56fc3011c9a2475817197668269994ec2
|
|
| MD5 |
8fee0314b540f6910b5c6047b6119470
|
|
| BLAKE2b-256 |
4b85d11be8ddc215ab21ffd1b51c9b9abdef6f4073f7cd625186a131d02c50ae
|