A simple approach to Django tagging
Project description
Version = 2026.02.26.2
Simple, flexible tagging for Django.
Add tags to any Django model field—with a polished widget, per-user tag customization, and automatic resilience to model renames.
Features
Easy setup — Add TagMeCharField to your model and go
Beautiful widget — Searchable dropdown with tag pills, powered by Alpine.js
User tags — Each user gets their own customizable tag set per field
System tags — Define default tags available to all users
Tag synchronization — Keep tags in sync across related models
Model rename resilient — FK-based lookups with automatic orphan detection and repair
CLI diagnostics — Health checks, orphan repair, and built-in troubleshooting via tag_me command
Structured logging — Observability via structlog for production monitoring
Form integration — Drop-in mixin for your model forms
Template tags — Display tags as styled pills
Quick Example
# models.py
from tag_me.models import TagMeCharField
class Article(models.Model):
tags = TagMeCharField(blank=True)
category = TagMeCharField(choices=CategoryChoices.choices, system_tag=True)
# forms.py
from tag_me.forms import TagMeModelFormMixin
class ArticleForm(TagMeModelFormMixin, forms.ModelForm):
class Meta:
model = Article
fields = ["tags", "category"]
See the Quickstart for the full setup including templates and frontend requirements.
Widget Preview
Dropdown with tag options
Search and filter tags
Model Rename Resilience
Rename your Django models without breaking tags. Tag-me uses ContentType foreign keys instead of model name strings, and automatically detects and merges orphaned records during migration.
# Rename your model, then:
python manage.py makemigrations # answer "yes" to rename prompt
python manage.py migrate # tag-me handles the rest
# Verify everything is clean:
python manage.py tag_me check
See How to Upgrade to FK Lookup for details on the FK-based system.
Management Command
Tag-me includes a CLI for diagnostics and administration:
python manage.py tag_me populate # create/update tags
python manage.py tag_me check # data integrity audit
python manage.py tag_me fix-orphans --dry-run # preview orphan repair
python manage.py tag_me help # built-in documentation
Tag population runs automatically after every migrate. The CLI exists for diagnostics, manual repair, and single-user operations.
See How to Use the Tag-me CLI for the full guide.
Installation
pip install django-tag-me
See the documentation for setup and usage instructions.
Links
Credits
Dropdown interface adapted from alpinejs-multiselect
Built with Django Cookiecutter
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_tag_me-2026.2.26.2.tar.gz.
File metadata
- Download URL: django_tag_me-2026.2.26.2.tar.gz
- Upload date:
- Size: 206.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34ac304c28e8155afc5d60f25c886908e1bf6402898888bb1f58922cc6dfb6b1
|
|
| MD5 |
5a64b970cdf6d1a761cf7e71046c0c49
|
|
| BLAKE2b-256 |
df85283a5a5bbad3afd6e86afe59a9672242b6364dc1279a0c52be757a7df783
|
File details
Details for the file django_tag_me-2026.2.26.2-py3-none-any.whl.
File metadata
- Download URL: django_tag_me-2026.2.26.2-py3-none-any.whl
- Upload date:
- Size: 110.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
322fdc182ddadc2f3e04fd4724208aef41226f7cf4fbf7872b0c07d31e48150f
|
|
| MD5 |
679ba6c517be7de3487b8ecbdfae6bf8
|
|
| BLAKE2b-256 |
190e88d231e24bdb8ad32fa066c61a24cea691318db14cdb83c851b4293c20f1
|