No project description provided
Project description
🧾 django-annotate
Annotate Django model files with schema information (fields, indexes, and foreign keys), inspired by the annotaterb project for Rails.
✨ Features
- Adds
# == Schema Informationblocks above each model class - Supports:
- Field types
- Indexes (including unique constraints)
- Foreign key relationships
- Works on monolithic or multi-file model setups
- CLI support via Django's
manage.py
🗄️ Database Support
Currently, django-annotate only supports PostgreSQL databases. This is because it uses PostgreSQL-specific system tables (pg_*) to introspect the database schema. Support for other databases (MySQL, SQLite) is planned for future releases.
Requirements
- PostgreSQL database
- Django project configured to use PostgreSQL as the database backend
- Appropriate database permissions to query system tables
If you're using a different database backend, you'll need to either:
- Switch to PostgreSQL
- Wait for support for your database to be added
- Contribute support for your database backend
📦 Installation
pip install django-annotate
# or if using Poetry:
poetry add django-annotate
⚙️ Setup
No configuration required — just install and run. If you want to run it via Django's CLI, ensure django_annotate is on your Python path (you don't need to add it to INSTALLED_APPS unless you want auto-discovery inside Django).
Then run:
python manage.py annotate_models
To annotate a specific app:
python manage.py annotate_models --app=myapp
🧪 Example Output
# == Schema Information
#
# Table name: organizations
#
# id :bigint not null, primary key
# name :varchar(255) not null
# created_at :timestamp not null
#
# Indexes
#
# organizations_pkey (id)
#
# Foreign Keys
#
# (none)
class Organization(models.Model):
name = models.CharField(max_length=255)
created_at = models.DateTimeField(auto_now_add=True)
# == Schema Information
#
# Table name: users
#
# id :bigint not null, primary key
# email :varchar(254) not null
# full_name :varchar(255) not null
# organization_id :bigint not null
# created_at :timestamp not null
#
# Indexes
#
# users_email_key (email) UNIQUE
# users_organization_id_idx (organization_id)
#
# Foreign Keys
#
# organization_id => organizations.id
class User(models.Model):
organization = models.ForeignKey(Organization, on_delete=models.CASCADE)
email = models.EmailField(unique=True)
full_name = models.CharField(max_length=255)
created_at = models.DateTimeField(auto_now_add=True)
# == Schema Information
#
# Table name: profiles
#
# id :bigint not null, primary key
# user_id :bigint not null
# bio :text
#
# Indexes
#
# profiles_user_id_key (user_id) UNIQUE
#
# Foreign Keys
#
# user_id => users.id
class Profile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE)
bio = models.TextField(blank=True)
# == Schema Information
#
# Table name: projects
#
# id :bigint not null, primary key
# name :varchar(255) not null
# created_at :timestamp not null
#
# Indexes
#
# projects_pkey (id)
#
# Foreign Keys
#
# (none)
class Project(models.Model):
name = models.CharField(max_length=255)
created_at = models.DateTimeField(auto_now_add=True)
members = models.ManyToManyField(User, related_name="projects")
📜 License
MIT © 2025 Chris Davis
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
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_annotate-0.1.0.tar.gz.
File metadata
- Download URL: django_annotate-0.1.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.3 Darwin/24.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8dfd9413aa3d75cf3da674cfc6ee263dd16c629127ec613a512ce01e6a9f9cd
|
|
| MD5 |
cc980f18446e5e0ce03ae771797abe91
|
|
| BLAKE2b-256 |
0a5376b16443f30b801998170f947cf90098de3e7e88674a2e13429431d0e9b2
|
File details
Details for the file django_annotate-0.1.0-py3-none-any.whl.
File metadata
- Download URL: django_annotate-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.3 Darwin/24.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03e3ab0cb66f9f2c2bd50b2172738d1840bf1cbd74e52c452f707d7f2bcd723e
|
|
| MD5 |
30034f0beaa1965b953b39ffca7d7a9f
|
|
| BLAKE2b-256 |
ee763d87b0be99bbd42c14374ba0a2ac5849da608bcfe5d3508f2dfceb15c080
|