django-toon is a package for sending data in the Toon format, which is several times faster than JSON.
The library offers two important features for Django. For example, you can create dynamic views that can return either JSON or Toon based on the request.
django-toon — Django Integration Guide
Usage:
Installation
pip install "django-toon"
Return Toon for all requests
settings.py
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': [
'django_toon.django.render.ToonRenderer',
],
'DEFAULT_PARSER_CLASSES': [
'django_toon.django.parser.ToonParser',
],
}
Enable dynamic mode (JSON or Toon based on headers)
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': [
'django_toon.django.render.DynamicRenderer',
],
'DEFAULT_PARSER_CLASSES': [
'django_toon.django.parser.DynamicParser',
],
}
Header Examples
Send JSON → Receive Toon:
Content-Type: application/json
Accept: application/x-toon
Send Toon → Receive Toon:
Content-Type: application/x-toon
Accept: application/x-toon
Send Toon → Receive JSON:
Content-Type: application/x-toon
Accept: application/json
Per-View Configuration
Dynamic view
views.py
from django_toon.parser import DynamicParser
from django_toon.render import DynamicRenderer
class Index(APIView):
parser_classes = [DynamicParser]
renderer_classes = [DynamicRenderer]
def get(self, request, *args, **kwargs):
return Response({"message": "Hello django-toon"})
Toon-only view
from django_toon.parser import ToonParser
from django_toon.render import ToonRenderer
class Index(APIView):
parser_classes = [ToonParser]
renderer_classes = [ToonRenderer]
def get(self, request, *args, **kwargs):
return Response({"message": "Hello django-toon"})
How to Test API:
source .venv/bin/activate
$ django-toon version
> 0.1.1
you can use GET and POST method to test your api
$ django-toon get https://exmaple.com/
$ django-toon post https://exmaple.com/ --payload '{"key": "value"}'
Contributing
We warmly welcome all contributions to django-toon! Whether you have an idea for improvement, found a bug, or want to add a new feature, we would be happy to have your help.
How to contribute
For small changes, feel free to open a Pull Request directly.
For larger features or significant changes, please open an Issue first so we can discuss the approach together.
Make sure your code is clean, readable, and includes any necessary tests.
🐞 Reporting Issues
If you encounter a problem:
First check whether the issue has already been reported.
If not, please open a New Issue with:
A clear description of the problem
Steps to reproduce
Python/framework/OS versions
Any relevant logs or error messages
We do our best to respond and fix issues as quickly as possible.
django-toonLicense (MIT-based Open License)
Copyright (c) 2025 django-toon Developers
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
This project is completely free and open-source.
There are no costs, no licensing fees, no subscription requirements, and
you are free to use it in personal, educational, and commercial projects.
Release files for django-toon 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django_toon-0.1.1.tar.gz | 6.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_toon-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 15.5 kB
Release files / django_toon-0.1.1.tar.gz
| Download URL | django_toon-0.1.1.tar.gz |
|---|---|
| Size | 6.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
61bf021033ec744704df71812a0471d10b7e7729b36694b6984053d8df5ea9c4
|
|
BLAKE2b-256 checksum How to use checksums |
fdf15eb692647058c582697dbd2aed4b72a7134aaaef9c69f6ba57314c9db331
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.11
|
Release files / django_toon-0.1.1-py3-none-any.whl
| Download URL | django_toon-0.1.1-py3-none-any.whl |
|---|---|
| Size | 8.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c5d0a79a92431dceb383435c8fcd626633e45d9d6e1328d5dcd9bd3c3c607d26
|
|
BLAKE2b-256 checksum How to use checksums |
0d77ecc2dc71e59bfd16ee2941be75cc61e2ecc70a195cec30060a83bc620712
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.11
|