django data type support for cattrs
Project description
django-cattrs-fields
Note: this is a very experimental project, I'm mostly navigating and discovering how this could work, as much as any help and feedback is appreciated, please do not use in a production environment.
Brings cattrs support to the django world.
this project is the first step of many, it is intended to be minimal, only adding data type support.
current data types
- BooleanField
- CharField
- DecimalField
- EmailField
- SlugField
- URLField
- UUIDField
- IntegerField
- FloatField
- DateField
- DateTimeField
- FileField
- TimeField
- EmptyField
installing
this is not packaged to PyPI yet, for using you need to clone the repository first.
then install the package by running uv sync or uv sync --extra <group name> where group name is one of optional-dependencies listed in pyproject.toml.
if you want a one-shot install use uv sync --all-extras
basic usage:
data model classes are attrs classes, so anything you find in attrs docs also applies here.
we also follow cattrs, so anything in their docs also applies
import uuid
from datetime import date, datetime, time
from decimal import Decimal
from attrs import define
from django.core.files.uploadedfile import SimpleUploadedFile
from django-cattrs-fields.converters import converter
from django_cattrs_fields.fields import (
BooleanField,
CharField,
DecimalField,
EmailField,
SlugField,
URLField,
UUIDField,
IntegerField,
FloatField,
DateField,
DateTimeField,
TimeField,
)
from django_cattrs_fields.fields.files import FileField
@define
class Human:
id: UUIDField
username: CharField
email: EmailField
slug: SlugField
website: URLField
age: IntegerField
salary: FloatField
birth_date: DateField
signup_date: DateTimeField
picture: FileField
accurate_salary: DecimalField
lunch_time: TimeField
human = {
"id": uuid.uuid4(),
"username": "bob",
"email": "bob@email.com",
"slug": "bo-b",
"website": "https://bob.com",
"age": 25,
"salary": 1000.43,
"birth_date": date(year=2000, month=7, day=3),
"signup_date": datetime.now(),
"picture": SimpleUploadedFile(name="test_image.jpeg", content=b"wheeee", content_type="image/jpeg"),
"accurate_salary": Decimal("1000.43"),
"lunch_time": time(14, 30, 0),
}
structure = converter.structure(human, Human) # runs structure hooks and validators, then creates an instance of `Human`
normal_data = converter.unstructure(structure) # runs unstructure hooks, then makes a dict similar to `human` (or what you tell it to), no validators run.
Comparison
in comparison with how django forms and DRF serializers work, see the examples below
in django forms we do:
form = MyForm(data)
form.is_valid()
clean_data = form.cleaned_data
in drf we do:
serializer = MySerializer(data)
serializer.is_valid()
clean_data = serializer.validated_data
# to serialize data
content = JSONRenderer().render(serializer.data)
the cattrs equivalent of forms is like this:
try:
form = converter.structure(data, MyForm) # where `MyForm` is a cattrs supported class (usually and attrs class)
except* ValueError: # notice the `*`, this is an exception group (unless you configure cattrs otherwise)
pass
clean_data = converter.unstructure(form)
or if working with json (or other formats)
try:
form = converter.loads(data, MyForm) # take a json data and load it to python
except* ValueError: # notice the `*`, this is an exception group (unless you configure cattrs otherwise)
pass
clean_data = converter.unstructure(form)
# to serialize data
data = converter.structure(clean_data, MyForm) # to dump data, structure it first
content = converter.dumps(data)
structuring and loading also validates the data, so no need for the extra step.
note that converter.structure raises ValueError as an exception group.
serializers
the basic converter you saw in basic usage section can only structure and unstructure, which is powerful, but we can do more.
cattrs comes with a set of preconfigured converters.
we ship our own version of these converters, which extends on top of cattrs' version, though we call them serializer to avoid some confusion.
these are available in django_cattrs_fields.converters directory:
- django_cattrs_fields.converters.bson
- django_cattrs_fields.converters.cbor2
- django_cattrs_fields.converters.json
- django_cattrs_fields.converters.msgpack
- django_cattrs_fields.converters.msgspec
- django_cattrs_fields.converters.orjson
- django_cattrs_fields.converters.pyyaml
- django_cattrs_fields.converters.tomlkit
- django_cattrs_fields.converters.ujson
just import serializer from each of these modules:
from django_cattrs_fields.converters import converter
from django_cattrs_fields.converters.json import serializer
structure = converter.structure(human, Human)
dump: str | bytes = serializer.dumps(structure) # takes an structured data, dumps a json string
load: Human = serializers.loads(dump, Human) # takes a dumped data, and loads that as a structured data
data = converter.unstructure(load) # a dictionary of the data, ready to be used.
it is important to note, while serializer objects also have structure and unstructure methods, they are considered internal API,
since they are configured to feed encoding and decoding functionalities,
they don't necessarily behave the way you would expect them to.
so in most scenarios you should import a converter and a serializer to handle their specific task, unless you are fully aware how your serializer behaves and can handle it yourself.
the only exception (currently) is the msgspec serializer, which doesn't implement any additional logic and works like a normal converter,
tho if the need arises, this could change.
work with django views
you can use the data models you made with this package instead of django forms or serializers
from django_cattrs_fields.converters import converter
from django_cattrs_fields.converters.json import serializer
@define
class Human:
id: UUIDField
username: CharField
email: EmailField
slug: SlugField
website: URLField
age: IntegerField
salary: FloatField
birth_date: DateField
signup_date: DateTimeField
accurate_salary: DecimalField
lunch_time: TimeField
def get_data(request):
if request.method == "POST":
if request.content_type in {"application/x-www-form-urlencoded", "multipart/form-data"}:
structured_data = converter.structure({**request.POST.dict(), **request.FILES.dict()}, Human) # handle html forms, and multipart data
else:
structured_data = serializer.loads(request.body, Human) # handle json (or anything else)
data: dict[str, Any] = converter.unstructure(structured_data) # a dictionary of all the POST data (excluding data not covered by Human)
return HttpResponse("done")
and just like that you have one view that handles html forms and json in one place
note that if POST data contains anything not in Human, it won't show up in the output data (such as csrf token, in this case)
also note that when working with APIs, depending on your client you might need to add csrf_exempt on you view.
saving to database
one you unstructure your data, you have a dictionary of cleaned data. then you can just pass that to your model and create your data
data: dict[str, Any] = converter.unstructure(structured_data)
# either
obj = HumanModel(**dict)
obj.save()
# or
HumanModel.objects.create(**dict)
nullable fields
by default all fields are required and passing a None value will raise an error
to make a field nullable, you can use a union
@define
class Product:
name: CharField # required
discount: FloatField | None # optional
default values
to add a default value, the simplest way is to just add it via assignment
@define
class Product:
name: CharField # required
discount: FloatField = 5.1
for more advanced use check default docs
field params
some fields like DecimalField can take some parameter about their data using typing.Annotated.
from typing import Annotated
from attrs import define
from django_cattrs_fields.fields import DecimalField, CharField, Params
@define
class Product:
name: CharField
discount: Annotated[DecimalField, Params(decimal_max_digits=5, decimal_places=3)]
the use case of params differs depending on the field, in the case of Decimal field, decimal_max_digits as equivalent to django's DecimalField's max_digits parameter
and decimal_places is equivalent to decimal_places parameter, and are used when structuring the data to validate the decimal value.
like django, DecimalField's params are optional, some fields may require some params in the future.
EmptyField
EmptyField is useful when supporting PATCH requests.
if a field doesn't receive any data and has Empty as its value, it will be omitted when unstructuring.
from django_cattrs_fields.fields import CharField, EmptyField, Empty
@define
class Human:
name: CharField
age: IntegerField | EmptyField = Empty # default to Empty, or provide Empty manually
struct = converter.structure({"name": "bob"})
# Human(name='bob', age=Empty)
unstruct = converter.unstructure(struct)
# {'name': 'bob'}
as you can see, since age is Empty, it won't be included in the resulting dictionary.
Warning: at the moment, EmptyField is only supported in unions that have only one other type, tho None is also supported, so:
CharField | EmptyFieldworks.CharField | EmptyField | Noneworks.CharField | IntegerField | EmptyFielddoesn't work.
if complex types are required, register your custom hooks until we can figure out how to properly support this.
for inspiration, you can check django_cattrs_fields.hooks.empty_hooks to see how other hooks are made.
validation
by default this package runs some validation when you are structuring your data but to add any custom validators you can use attrs built-in validation mechanism.
note that the validations we run are baked in structure hooks, so they will run in any situation. these are validations that django also runs every time you use it's data fields. if you need to turn this off, just create a new converter
File Handling
this package comes with FileField you can use to work with files.
when an uploaded file is passed to this field (e.g: user POSTs some file), it goes through validation,
then an instance of django's UploadedFile is returned (usually a subclass of UploadedFile is used like InMemoryUploadedFile).
you can save this using the ORM or any other way you do with django.
when serving a File (e.g: user sends a GET request), an instance of django's FieldFile should be passed (django ORM does this automatically)
in this case our hooks will return the url of the file.
note that this behavior is different in django and DRF
django returns the whole FieldFile object (could be useful with templates), DRF is configurable, it either returns the url or the file name.
if you require a different behaviour, you can change this by hooking your logic and set DCF_FILE_HOOKS to False in your settings file,
this will disable all file related hooks.
contribution
I appreciate any help with this project, but please follow Django's Code of Conduct if you have ideas or have found a bug please open an issue on github
to help with development follow these steps:
- fork the repository from github.
- clone the project from your fork.
- install the package with one of the following commands:
uv sync --group devuv sync --group dev --group ipythonuv sync --group dev --group prekuv sync --group dev --group testyou can combine them together or just useuv sync --all-groupsto one-shot.
- run
prek installorpre-commit installdepending on your choice.
if you are contributing new code, please make sure to add some tests for it.
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_cattrs_fields-0.0.1.tar.gz.
File metadata
- Download URL: django_cattrs_fields-0.0.1.tar.gz
- Upload date:
- Size: 24.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3d653a2c7b425ffee3d399ae635daf8dd4cd419c8a343a240c5f12a0a668951
|
|
| MD5 |
e0b08c05096e7997411621bd2181e689
|
|
| BLAKE2b-256 |
b75503d5f965b3818b0745f41db143057a86f092ce49585b024eeb82f72f6d0e
|
File details
Details for the file django_cattrs_fields-0.0.1-py3-none-any.whl.
File metadata
- Download URL: django_cattrs_fields-0.0.1-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82976053f582a1bf52cb34bdd45e07726012ef1002431e90b49f796e0af69f21
|
|
| MD5 |
fc1fffbcc0d5d50dc29815ae20103131
|
|
| BLAKE2b-256 |
086768d5b58089e19b2aaffaf9bb1366b0e6bc4249afe25ea1008d1cc56cbdd3
|