Clade
A Django module for managing hierarchical data models through a tree of nodes, with kinship relationship queries and optional database-native optimisations.
Status
Pre-alpha — v0.6.0 published. API not yet stable.
| Version | Status | Content |
|---|---|---|
v0.4.0 |
✅ Published | Extended kinship (pibling, nibling, cousin — symmetric degree) |
v0.5.0 |
✅ Published | Affinity model & storage decision (DD-005) |
v0.6.0 |
✅ Current | Affinity transitivity & consistency (DD-018) |
See the milestones and open issues on GitLab for the full roadmap.
What it does
Clade provides a Django application for modelling and querying tree-structured data. It exposes the full set of kinship relationships derivable from a node tree — not only parent/child pairs, but ancestors, descendants, siblings, and collateral lines (piblings, niblings, cousins…) — using gender-neutral terminology throughout.
It also introduces Affinity: a lateral relationship between nodes that share
attribute values without any hierarchical link between them — inter-model by
design, declared via Meta.affinity_rules (v0.5.0).
The module targets multiple database backends:
- PostgreSQL with
ltree— native optimisation (v0.3.0) - SQLite / other — pure-Django Materialized Path fallback (current)
Install
pip install django-clade
# settings.py
INSTALLED_APPS = [
...
"clade",
]
Usage
from clade.models import CladeNode
from django.db import models
class Category(CladeNode):
name = models.CharField(max_length=255)
# Build a tree
root = Category.objects.create(name="Root")
child = Category.objects.create(name="Child", parent=root)
leaf = Category.objects.create(name="Leaf", parent=child)
# Traverse
leaf.ancestors() # QuerySet → [root, child] (ordered by path)
root.descendants() # QuerySet → [child, leaf]
child.siblings() # QuerySet → []
leaf.is_root # False
leaf.is_leaf # True
leaf.root # → root
# Manager API
Category.objects.ancestors_of(leaf)
Category.objects.descendants_of(root)
# Deletion strategies
from clade.deletion import ADOPT
class Department(CladeNode):
name = models.CharField(max_length=255)
parent = models.ForeignKey(
"self", null=True, blank=True,
on_delete=ADOPT, # re-parents children on delete
related_name="children",
)
# Extended kinship (v0.4.0) — pibling, nibling, cousin
grandparent = Category.objects.create(name="Grandparent")
parent = Category.objects.create(name="Parent", parent=grandparent)
aunt = Category.objects.create(name="Aunt", parent=grandparent)
me = Category.objects.create(name="Me", parent=parent)
cousin = Category.objects.create(name="Cousin", parent=aunt)
me.piblings() # QuerySet → [aunt] (siblings of my parent)
aunt.niblings() # QuerySet → [me] (children of my siblings)
me.cousins() # QuerySet → [cousin] (degree=2, the default)
# Manager API
Category.objects.piblings_of(me)
Category.objects.cousins_of(me, degree=2)
cousins()/cousins_of() use a symmetric degree, not the genealogical
(degree, removed) convention: degree=2 (the default) matches "1st cousin";
degree=3 matches "2nd cousin". Candidates at a different depth than the
node itself (genealogically "once removed", etc.) are not covered — see
issue #56 for the full
rationale and the planned post-v1.0.0 extension.
Affinity (v0.5.0, v0.6.0)
Affinity models a non-hierarchical relationship: two nodes that share an
attribute value, with no parent/child link between them. It's inter-model by
design — a Department and a Project can be in Affinity even though they're
unrelated concrete models, as long as both inherit CladeNode.
from django.db import models
from clade.affinity import AffinityRule
from clade.models import CladeNode
class Department(CladeNode):
name = models.CharField(max_length=255)
region = models.CharField(max_length=255, null=True, blank=True)
manager = models.CharField(max_length=255, null=True, blank=True)
class Meta(CladeNode.Meta):
affinity_rules = [
AffinityRule("region", to="myapp.Project", target_field="cost_center", channel="geo"),
AffinityRule("manager", to="myapp.Project", target_field="lead", channel="management"),
]
class Project(CladeNode):
title = models.CharField(max_length=255)
cost_center = models.CharField(max_length=255, null=True, blank=True)
lead = models.CharField(max_length=255, null=True, blank=True)
# Affinity rows are materialised automatically on save — no manual sync.
paris_dept = Department.objects.create(name="Paris office", region="paris", manager="alice")
paris_proj = Project.objects.create(title="Metro extension", cost_center="paris", lead="alice")
paris_dept.affinities(channel="geo") # QuerySet[Project] → [paris_proj]
paris_dept.affinities(channel="management") # QuerySet[Project] → [paris_proj]
# Works from either side — a passive target model (Project here) never
# itself declares affinity_rules, but still resyncs on its own save.
paris_proj.affinities(channel="geo") # QuerySet[Department] → [paris_dept]
affinities(channel=None) returns a single QuerySet and raises
HeterogeneousAffinityError if the result would span more than one partner
model — this can happen when two different source models reuse the same
channel name toward the same target (channel uniqueness is per declaring
model, not global). Use affinities_grouped() for that case: it never
raises, returning {model: QuerySet} instead of a single QuerySet.
paris_dept.affinities_grouped(channel="geo")
# {Project: <QuerySet [paris_proj]>}
Transitivity (v0.6.0): by default only the relationships an AffinityRule
names directly are materialised. Two rules can be chained through a shared
model by opting in on both sides with shared=True — say Department's
existing "geo" rule above gains shared=True, and Project gains a
second rule, reusing its own cost_center, onward to a new Site model:
class Site(CladeNode):
name = models.CharField(max_length=255)
region = models.CharField(max_length=255, null=True, blank=True)
# Department.Meta.affinity_rules — the existing "geo" rule, now consenting:
AffinityRule("region", to="myapp.Project", target_field="cost_center",
channel="geo", shared=True)
# Project.Meta.affinity_rules — a new rule alongside the existing ones:
AffinityRule("cost_center", to="myapp.Site", target_field="region",
channel="geo", shared=True)
With both ends consenting, Department↔Site is derived and stored
automatically (Affinity.is_derived=True) whenever Department↔Project
and Project↔Site share the same value under "geo". One-sided consent
is rejected at manage.py check time (clade.E003), naming the model
where consent is incomplete. Derived pairs stay correct automatically as
data changes — deleting or changing the bridging instance recomputes them.
Constraints:
local_field/target_fieldmust be one of a fixed allowlist of scalar field types (CharField,IntegerField,DateField,BooleanField, and similar) — checked atmanage.py check/ CI startup (clade.E002).ManyToManyField,FileField,JSONField,FloatField, andForeignKey/OneToOneFieldare rejected.channelmust be unique within a single model'saffinity_ruleslist (clade.E001) — but is freely reusable across different source models.- Transitivity is opt-in, not automatic (
shared=True,clade.E003) — see above.
See issue #5 (DD-005) and issue #88 (DD-018) for the full design rationale.
Requirements
- Python 3.10+
- Django 5.2+
Contributing
See CONTRIBUTING.md and CODE_OF_CONDUCT.md.
Licence
Apache License 2.0 — see LICENSE.txt and NOTICE.
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_clade-0.6.0.tar.gz.
File metadata
- Download URL: django_clade-0.6.0.tar.gz
- Upload date:
- Size: 99.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48136b80f73533e192c86758d33f848ecc7f221d3748501529b26a2fe1fe5e70
|
|
| MD5 |
eaa5768eb294f5c8d5853b95aaa20b57
|
|
| BLAKE2b-256 |
ef5875de18faf9520c5939e1ca7ef95633d5fc3763b66cbdf4b5a05d0112bfb1
|
File details
Details for the file django_clade-0.6.0-py3-none-any.whl.
File metadata
- Download URL: django_clade-0.6.0-py3-none-any.whl
- Upload date:
- Size: 44.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c5a0a9fd9387d95aeb046beead2ff11f45b7ca9546c608264aab903a2e20954
|
|
| MD5 |
ca82e77a95eb76c8cf6b844b42161d32
|
|
| BLAKE2b-256 |
106dd212555666f93b2b584b73217616bbbb1fbd479b279fbd3126a8eb35282a
|