Skip to main content

Add tags to any model in Django via ModelViewSet

Project description

Django Flexi Tag

Build status Documentation status PyPI PyPI - Django version PyPI - Python version PyPI - License

A flexible and efficient tagging system for Django models that allows you to add, remove, and manage tags on any Django model with minimal configuration.

Features

  • Easy Integration: Works seamlessly with Django REST Framework ViewSets
  • Flexible Tag Storage: Uses PostgreSQL JSONField for efficient and flexible tag storage
  • Automatic Model Generation: Generates auxiliary Tag models for your existing models
  • Bulk Operations: Support for bulk tag operations on multiple objects
  • Django Compatibility: Works across multiple Django versions (1.10 to 5.0)
  • Python Compatibility: Supports Python 2.7 and Python 3.4+

Installation

Installation using pip:

pip install dj-flexi-tag

Add flexi_tag to your INSTALLED_APPS and run migrations:

INSTALLED_APPS = (
    # other apps here...
    'flexi_tag',
)

Testing

Run the tests with:

python runtests.py

Use the --verbose flag for more detailed output:

python runtests.py --verbose

Use the --interactive flag for interactive mode:

python runtests.py --interactive

Basic Usage

1. Define Your Models with FlexiTagMixin

from flexi_tag.utils.models import FlexiTagMixin

class YourModel(FlexiTagMixin):
    name = models.CharField(max_length=100)
    # other fields...

2. Generate Tag Models

Run the management command:

python manage.py generate_tag_models

This will create a flexi_generated_model.py file in the same directory as your model, which contains a YourModelTag model. The command will also automatically add the appropriate import statement to your models.py file:

from .flexi_generated_model import YourModelTag  # noqa

If multiple tag models are generated, they will be imported in a single line:

from .flexi_generated_model import FirstModelTag, SecondModelTag  # noqa

3. Create and Apply Migrations

python manage.py makemigrations
python manage.py migrate

4. Add Tagging to Your ViewSet

from rest_framework import viewsets
from flexi_tag.utils.views import TaggableViewSetMixin
from .models import YourModel

class YourModelViewSet(viewsets.ModelViewSet, TaggableViewSetMixin):
    queryset = YourModel.objects.all()
    serializer_class = YourModelSerializer

5. Use the Tagging API

Add a tag:

POST /your-model/1/add_tag/
{"key": "important"}

Add multiple tags:

POST /your-model/1/bulk_add_tag/
{"keys": ["important", "urgent"]}

Remove a tag:

POST /your-model/1/remove_tag/
{"key": "important"}

Advanced Usage

For more advanced usage, including programmatic tag management, custom tag validation, and more detailed configuration options, please refer to the documentation.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dj-flexi-tag-1.0.5a2.tar.gz (26.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dj_flexi_tag-1.0.5a2-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file dj-flexi-tag-1.0.5a2.tar.gz.

File metadata

  • Download URL: dj-flexi-tag-1.0.5a2.tar.gz
  • Upload date:
  • Size: 26.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.17

File hashes

Hashes for dj-flexi-tag-1.0.5a2.tar.gz
Algorithm Hash digest
SHA256 4045c5e9a0fa8ecdb7e0cf8c2a2f902f7c9131e3a47c1ba81aaab89ed41ce34f
MD5 9b1d93c8ec6694a70a5d9981b6d8eb93
BLAKE2b-256 54460e611e501410613ff2a00170552f0977b4ad26a11cd39ac2385dadffdb9d

See more details on using hashes here.

File details

Details for the file dj_flexi_tag-1.0.5a2-py3-none-any.whl.

File metadata

  • Download URL: dj_flexi_tag-1.0.5a2-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.17

File hashes

Hashes for dj_flexi_tag-1.0.5a2-py3-none-any.whl
Algorithm Hash digest
SHA256 a83d2ad6e2613a904be50eca07264654798eb3cf8ec14775b92aee91abb25af1
MD5 aac72756bbad70ba1704df3d40b6245b
BLAKE2b-256 8b3d84ab528287de00c4d34367169c3a5538bbee0756baa5d445615dcefd5c0a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page