Skip to main content

No project description provided

Project description

Django REST Framework Recursive (Fork)

This repository is the friendly fork of the original django-rest-framework-recursive by heywbj. As the original repo is no longer being actively maintained, we've friendly forked it here to undertake maintenance for modern versions of Python, Django, and Django Rest Framework.

This package provides a RecursiveField that enables you to serailize a tree, linked list, or even a directed acyclic graph. It also supports validation, deserialization, ModeSerializer, and multi-step recursive structures.

Example Usage

Tree Recursion

from rest_framework import serializers
from django_rest_framework_recursive.fields import RecursiveField

class TreeSerializer(serializers.Serializer):
    name = serializers.CharField()
    children = serializers.ListField(child=RecursiveField())

Linked List Recursion

from rest_framework import serializers
from django_rest_framework_recursive.fields import RecursiveField

class LinkSerializer(serializers.Serializer):
    name = serializers.CharField(max_length=25)
    next = RecursiveField(allow_null=True)

Further use cases are documented in the tests, see [here][tests] for more usage examples

Prerequisites

This package supports:

  • Python 3.10, 3.11
  • Django 3.2, 4.0, 4.1, 4.2, 5.0
  • Django Rest Framework 3.12, 3.13, 3.14, 3.15

For an exact list of tested version combinations, see the valid_version_combinations set in the noxfile

During development you will also need:

  • uv installed as a system package.
  • pre-commit 3 (Optional, but strongly recommended)

Installation

Install using pip...

pip install drf-recursive

Local development

When making changes please remember to update the CHANGELOG.md, which follows the guidelines at keepachangelog. Add your changes to the [Unreleased] section when you create your PR.

Installation

Ensure one of the above Pythons is installed and used by the python executable:****

python --version
Python 3.10.13   # or any of the supported versions

Ensure uv is installed as a system package. This can be done with pipx or Homebrew.

Then create and activate a virtual environment. If you don't have any other way of managing virtual environments this can be done by running:

uv venv
source .venv/bin/activate

You could also use virtualenvwrapper, direnv or any similar tool to help manage your virtual environments.

Once you are in an active virtual environment run

make dev

This will set up your local development environment, installing all development dependencies.

Testing (single Python version)

To run the test suite using the Python version of your virtual environment, run:

make test

Testing (all supported Python versions)

To test against multiple Python (and package) versions, we need to:

  • Have nox installed outside of the virtualenv. This is best done using pipx:

    pipx install nox
    
  • Ensure that all supported Python versions are installed and available on your system (as e.g. python3.10, python3.11 etc). This can be done with pyenv.

Then run nox with:

nox

Nox will create a separate virtual environment for each combination of Python and package versions defined in noxfile.py.

To list the available sessions, run:

nox --list-sessions

To run the test suite in a specific Nox session, use:

nox -s $SESSION_NAME

Static analysis

Run all static analysis tools with:

make lint

Auto formatting

Reformat code to conform with our conventions using:

make format

Dependencies

Package dependencies are declared in pyproject.toml.

  • package dependencies in the dependencies array in the [project] section.
  • development dependencies in the dev array in the [project.optional-dependencies] section.

For local development, the dependencies declared in pyproject.toml are pinned to specific versions using the requirements/development.txt lock file.

Adding a new dependency

To install a new Python dependency add it to the appropriate section in pyproject.toml and then run:

make dev

This will:

  1. Build a new version of the requirements/development.txt lock file containing the newly added package.
  2. Sync your installed packages with those pinned in requirements/development.txt.

This will not change the pinned versions of any packages already in any requirements file unless needed by the new packages, even if there are updated versions of those packages available.

Remember to commit your changed requirements/development.txt files alongside the changed pyproject.toml.

Removing a dependency

Removing Python dependencies works exactly the same way: edit pyproject.toml and then run make dev.

Updating all Python packages

To update the pinned versions of all packages simply run:

make update

This will update the pinned versions of every package in the requirements/development.txt lock file to the latest version which is compatible with the constraints in pyproject.toml.

You can then run:

make dev

to sync your installed packages with the updated versions pinned in requirements/development.txt.

Updating individual Python packages

Upgrade a single development dependency with:

uv pip compile -P $PACKAGE==$VERSION pyproject.toml --extra=dev --output-file=requirements/development.txt

You can then run:

make dev

to sync your installed packages with the updated versions pinned in requirements/development.txt.

Versioning

This project uses SemVer for versioning with no additional suffix after the version number. When it is time for a new release, run the command make version_{type} where {type} should be replaced with one of major, minor, patch depending on the type of changes in the release.

The command will update the version in pyproject.toml and move the changes from the "Unreleased" section of the changelog to a versioned section and create a new "Unreleased" section for future improvements.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drf_recursive-0.2.0.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

drf_recursive-0.2.0-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file drf_recursive-0.2.0.tar.gz.

File metadata

  • Download URL: drf_recursive-0.2.0.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for drf_recursive-0.2.0.tar.gz
Algorithm Hash digest
SHA256 2fd16f3570adbdb24468c16c48900832d34d39c10b876b5cbfb58e09bf1093a7
MD5 659c6e673aaa54c44be5c84da8047459
BLAKE2b-256 a8bc52d275c6a213eb8a0e7de5be95b80c161e4d7567fd5c0e251108aab3481c

See more details on using hashes here.

File details

Details for the file drf_recursive-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for drf_recursive-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 68320cb1ce537cb2eb49dd840e7adff92bdd3f7197a3c6137fd232c90efab947
MD5 da1f9584450d768e0839acaf9a6d155a
BLAKE2b-256 28efa81bf59cdb3d4908902ccdf85281622bbfb9645ff28d6af2e6c59a63a79e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page