Skip to main content

django-taggit is a reusable Django application for simple tagging.

Project description

Jazzband https://travis-ci.org/jazzband/django-taggit.svg?branch=master https://codecov.io/gh/jazzband/django-taggit/coverage.svg?branch=master

This is a Jazzband project. By contributing you agree to abide by the Contributor Code of Conduct and follow the guidelines.

django-taggit a simpler approach to tagging with Django. Add "taggit" to your INSTALLED_APPS then just add a TaggableManager to your model and go:

from django.db import models

from taggit.managers import TaggableManager

class Food(models.Model):
    # ... fields here

    tags = TaggableManager()

Then you can use the API like so:

>>> apple = Food.objects.create(name="apple")
>>> apple.tags.add("red", "green", "delicious")
>>> apple.tags.all()
[<Tag: red>, <Tag: green>, <Tag: delicious>]
>>> apple.tags.remove("green")
>>> apple.tags.all()
[<Tag: red>, <Tag: delicious>]
>>> Food.objects.filter(tags__name__in=["red"])
[<Food: apple>, <Food: cherry>]

Tags will show up for you automatically in forms and the admin.

django-taggit requires Django 1.11 or greater.

For more info check out the documentation. And for questions about usage or development you can contact the mailinglist.

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

django-taggit-1.0.0.tar.gz (45.5 kB view details)

Uploaded Source

Built Distribution

django_taggit-1.0.0-py3-none-any.whl (42.9 kB view details)

Uploaded Python 3

File details

Details for the file django-taggit-1.0.0.tar.gz.

File metadata

  • Download URL: django-taggit-1.0.0.tar.gz
  • Upload date:
  • Size: 45.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.2

File hashes

Hashes for django-taggit-1.0.0.tar.gz
Algorithm Hash digest
SHA256 01f41e4904f6675e00ddf58a074a7713214f2e2350dab7543c5fee5ef69cc544
MD5 d108403c51dc3a7061eab86e3783a995
BLAKE2b-256 10b02277865941d56027d46c15883926001b619de6ab5fbae85cc976cc562937

See more details on using hashes here.

File details

Details for the file django_taggit-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: django_taggit-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 42.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.2

File hashes

Hashes for django_taggit-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 33ec0ee82eae47566a986797423bfc6459b8e83f86bbad1a758d5f00ac4ff542
MD5 ce037ea2327a8ba9a72dc39285dceb80
BLAKE2b-256 808d341c02a1230f7365b2b58c025580b82b9290b801ad7756324c94b5e87e4c

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