skillfed

django-tree-queries

Tree queries with explicit opt-in, without configurability

django-tree-queries v0.24.0 236.0K downloads/30d#8,991 on PyPI516
Permissive license BSD-3-Clause Active released

What it is and what it does

django-tree-queries adds efficient tree querying to Django models using recursive common table expressions instead of materialized path or nested set approaches. It extends Django querysets with methods to add computed columns (tree_depth, tree_path, tree_ordering) and control sibling ordering. The package supports PostgreSQL, SQLite (3.8.3 or higher), MySQL (8.0 or higher), and MariaDB (10.2.2 or higher), with automatic optimization for simple queries that avoids creating intermediate rank tables.

The library enforces a minimal design: parent foreign keys must be named "parent", primary keys must be integer or UUID, and tree depth is correctly defined with root nodes at depth zero. It includes an abstract model class with built-in loop protection and a variant for automatic sibling position management. The approach trades configurability for simplicity and performance, avoiding the complexity and data redundancy of other tree libraries.

Use it for:

  • Build category hierarchies or organizational charts where you need to fetch all ancestors or descendants of a node efficiently.
  • Implement breadcrumb navigation or tree views that require depth-first ordering and path information for each node.
  • Manage nested comment threads or forum structures with automatic depth calculation and sibling ordering.
  • Query large hierarchical datasets while avoiding N+1 query problems through recursive common table expressions.
  • Reorder sibling nodes in a tree without recalculating the entire structure using automatic position management.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Query hierarchical tree structures in Django models using recursive common table expressions, with support for PostgreSQL, SQLite, MySQL, and MariaDB.

Yes. The package is actively maintained, has no security vulnerabilities, installs with zero dependencies, and solves a real problem with a clean, opinionated design. It is suitable for any Django project needing hierarchical data queries on supported databases. The 50-level limit on MySQL/MariaDB is a documented trade-off; verify it fits your use case before committing.

Install

django-tree-queries on PyPI

pip

pip install django-tree-queries

uv

uv add django-tree-queries

poetry

poetry add django-tree-queries

Installing django-tree-queries

Before you install

Low friction install with no runtime dependencies. Actively maintained, with last commit on 2026-08-14 and 516 repository stars indicating stable community adoption.

License in practice

BSD-3-Clause permissive license allows commercial and private use with minimal restrictions; suitable for most projects.

Quickstart

pip install django-tree-queries

from django_tree_queries.models import TreeNode
import django.db.models as models

class Node(TreeNode):
    name = models.CharField(max_length=100)

nodes = Node.objects.with_tree_fields()
for node in nodes:
    print(node.tree_depth, node.tree_path)

Requires Django 3.2 or better and Python 3.8 or better; MySQL/MariaDB trees limited to 50 levels maximum; parent foreign key must be named 'parent'.

Verify before relying

  • Whether the performance optimization for simple cases delivers measurable improvement in typical workloads.
  • Real-world experience with the 50-level depth limit on MySQL/MariaDB and whether it affects common use cases.
  • Support for integer and UUID primary keys only—whether this limitation affects your existing models.

Package facts

License BSD-3-Clause (permissive)
Python support supports the current Python release (>=3.8)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 142 days since the last release
Last repo commit
First released
Downloads 236,026/month — #8,991 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: django_tree_queries-0.24.0-py3-none-any.whl

Environment :: Web EnvironmentFramework :: DjangoIntended Audience :: DevelopersLicense :: OSI Approved :: BSD LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Internet :: WWW/HTTP :: Dynamic ContentTopic :: Software Development

Tags

django tree querieshierarchical data djangorecursive cte djangoadjacency list queriesnested tree structuresparent-child relationshipstree depth ordering
django-ormhierarchical-datadatabase-queries

More Software Development packages