Machine tagging built upon django-taggit
Project description
Overview
This package provides machine tagging (i.e. property:value tagging) built on top of django-taggit.
Installation
Grab from PyPI with:
$ pip install django-taggit-machinetags
Update your installed apps:
INSTALLED_APPS = ( ... 'taggit', 'taggit_machinetags', ... )
And run the migrations:
$ python manage.py migrate
Usage
Usage is the same as taggit, but tags can now be specified as, colon-separated, property-value pairs.
# models.py from django.db import models from taggit_machinetags.managers import MachineTaggableManager class MyModel(models.Model): name = models.CharField(...) tags = MachineTaggableManager() # >>> instance = MyModel.objects.all()[0] >>> instance.tags.add('Property:Value') >>> instance.tags.add('Taggy:McTag') >>> instance.tags.get(namespace='Property') <MachineTag: Property:Value> >> MyModel.objects.filter(tags__slug='taggy:mctag') <MyModel:...>
Creating a tag with the string ‘Property:Value’ results in a MachineTag with the namespace namespace=Property, name=Value, namespace_slug=property, name_slug=value, and slug=property:value.
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
Close
Hashes for django-taggit-machinetags-0.8.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53982ba94d15cff3a2cb3bdd51ef4f01794fc5100f3ad4cef459b5cd5fcd58c4 |
|
MD5 | ca63b1c21934d0f96b2d0274ba75a075 |
|
BLAKE2b-256 | 909d7a6249a2ffa84b4a7565bb78e84ff117790c36abc648a04b858b384157dd |
Close
Hashes for django_taggit_machinetags-0.8.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d05ad57e81907f0bcc7913bb645d773c8903119c500ade6f4ac0a4f1b8d8bfb0 |
|
MD5 | e4178dc08de7d11f076d6487c7e5909d |
|
BLAKE2b-256 | a5798bd8eb25ee2c5da5207f9bb843a8eef8e2722ea4e7cea512eb251da18592 |