{ "info": { "author": "Fantomas42", "author_email": "fantomas42@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ], "description": "==============\nDjango Tagging\n==============\n\n|travis-develop| |coverage-develop|\n\nThis is a generic tagging application for Django projects\n\nhttps://django-tagging.readthedocs.io/\n\nNote that this application requires Python 2.7 or later, and Django\n1.8 or later. You can obtain Python from http://www.python.org/ and\nDjango from http://www.djangoproject.com/.\n\n.. |travis-develop| image:: https://travis-ci.org/Fantomas42/django-tagging.png?branch=develop\n :alt: Build Status - develop branch\n :target: http://travis-ci.org/Fantomas42/django-tagging\n.. |coverage-develop| image:: https://coveralls.io/repos/Fantomas42/django-tagging/badge.png?branch=develop\n :alt: Coverage of the code\n :target: https://coveralls.io/r/Fantomas42/django-tagging\n\n========================\nDjango Tagging Changelog\n========================\n\nVersion 0.4.5, 6th September 2016:\n----------------------------------\n\n* Fix on the previous compatiblity fix.\n\nVersion 0.4.4, 5th September 2016:\n----------------------------------\n\n* Compatiblity fix for Django 1.10\n\nVersion 0.4.3, 3rd May 2016:\n----------------------------\n\n* Add missing migration for ``on_delete``\n\nVersion 0.4.2, 2nd May 2016:\n----------------------------\n\n* Fix tag weight\n* Reduce warnings for recent versions of Django\n\nVersion 0.4.1, 15th January 2016:\n---------------------------------\n\n* Typo fixes\n* Support apps\n\nVersion 0.4, 15th June 2015:\n----------------------------\n\n* Modernization of the package\n\nVersion 0.3.6, 13th May 2015:\n-----------------------------\n\n* Corrected initial migration\n\nVersion 0.3.5, 13th May 2015:\n-----------------------------\n\n* Added support for Django 1.8\n* Using migrations to fix syncdb\n* Rename get_query_set to get_queryset\n* Import GenericForeignKey from the new location\n\nVersion 0.3.4, 7th November 2014:\n---------------------------------\n\n* Fix unicode errors in admin\n\nVersion 0.3.3, 15th October 2014:\n---------------------------------\n\n* Added support for Django 1.7\n\nVersion 0.3.2, 18th February 2014:\n----------------------------------\n\n* Added support for Django 1.4 and 1.5\n* Added support for Python 2.6 to 3.3\n* Added tox to test and coverage\n\nVersion 0.3.1, 22nd January 2010:\n---------------------------------\n\n* Fixed Django 1.2 support (did not add anything new)\n* Fixed #95 - tagging.register won't stomp on model attributes\n\nVersion 0.3.0, 22nd August 2009:\n--------------------------------\n\n* Fixes for Django 1.0 compatibility.\n\n* Added a ``tagging.generic`` module for working with list of objects\n which have generic relations, containing a ``fetch_content_objects``\n function for retrieving content objects for a list of ``TaggedItem``s\n using ``number_of_content_types + 1`` queries rather than the\n ``number_of_tagged_items * 2`` queries you'd get by iterating over the\n list and accessing each item's ``object`` attribute.\n\n* Added a ``usage`` method to ``ModelTagManager``.\n\n* ``TaggedItemManager``'s methods now accept a ``QuerySet`` or a\n ``Model`` class. If a ``QuerySet`` is given, it will be used as the\n basis for the ``QuerySet``s the methods return, so can be used to\n restrict results to a subset of a model's instances. The\n `tagged_object_list`` generic view and ModelTaggedItemManager``\n manager have been updated accordingly.\n\n* Removed ``tagging\\tests\\runtests.py``, as tests can be run with\n ``django-admin.py test --settings=tagging.tests.settings``.\n\n* A ``tagging.TagDescriptor`` is now added to models when registered.\n This returns a ``tagging.managers.ModelTagManager`` when accessed on a\n model class, and provide access to and control over tags when used on\n an instance.\n\n* Added ``tagging.register`` to register models with the tagging app.\n Initially, a ``tagging.managers.ModelTaggedItemManager`` is added for\n convenient access to tagged items.\n\n* Moved ``TagManager`` and ``TaggedItemManager`` to ``models.py`` - gets\n rid of some import related silliness, as ``TagManager`` needs access\n to ``TaggedItem``.\n\nVersion 0.2.1, 16th Jan 2008:\n-----------------------------\n\n* Fixed a bug with space-delimited tag input handling - duplicates\n weren't being removed and the list of tag names wasn't sorted.\n\nVersion 0.2, 12th Jan 2008:\n---------------------------\n\nPackaged from revision 122 in Subversion; download at\nhttp://django-tagging.googlecode.com/files/tagging-0.2.zip\n\n* Added a ``tag_cloud_for_model`` template tag.\n\n* Added a ``MAX_TAG_LENGTH`` setting.\n\n* Multi-word tags are here - simple space-delimited input still works.\n Double quotes and/or commas are used to delineate multi- word tags.\n As far as valid tag contents - anything goes, at least initially.\n\n* BACKWARDS-INCOMPATIBLE CHANGE - ``django.utils.get_tag_name_list`` and\n related regular expressions have been removed in favour of a new tag\n input parsing function, ``django.utils.parse_tag_input``.\n\n* BACKWARDS-INCOMPATIBLE CHANGE - ``Tag`` and ``TaggedItem`` no longer\n declare an explicit ``db_table``. If you can't rename your tables,\n you'll have to put these back in manually.\n\n* Fixed a bug in calculation of logarithmic tag clouds - ``font_size``\n attributes were not being set in some cases when the least used tag in\n the cloud had been used more than once.\n\n* For consistency of return type, ``TaggedItemManager.get_by_model`` now\n returns an empty ``QuerySet`` instead of an empty ``list`` if\n non-existent tags were given.\n\n* Fixed a bug caused by ``cloud_for_model`` not passing its\n ``distribution`` argument to ``calculate_cloud``.\n\n* Added ``TaggedItemManager.get_union_by_model`` for looking up items\n tagged with any one of a list of tags.\n\n* Added ``TagManager.add_tag`` for adding a single extra tag to an\n object.\n\n* Tag names can now be forced to lowercase before they are saved to the\n database by adding the appropriate ``FORCE_LOWERCASE_TAGS`` setting to\n your project's settings module. This feature defaults to being off.\n\n* Fixed a bug where passing non-existent tag names to\n ``TaggedItemManager.get_by_model`` caused database errors with some\n backends.\n\n* Added ``tagged_object_list`` generic view for displaying paginated\n lists of objects for a given model which have a given tag, and\n optionally related tags for that model.\n\n\nVersion 0.1, 30th May 2007:\n---------------------------\n\nPackaged from revision 79 in Subversion; download at\nhttp://django-tagging.googlecode.com/files/tagging-0.1.zip\n\n* First packaged version using distutils.\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Fantomas42/django-tagging", "keywords": "django,tag,tagging", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "django-tagging", "package_url": "https://pypi.org/project/django-tagging/", "platform": "", "project_url": "https://pypi.org/project/django-tagging/", "project_urls": { "Homepage": "https://github.com/Fantomas42/django-tagging" }, "release_url": "https://pypi.org/project/django-tagging/0.4.6/", "requires_dist": null, "requires_python": "", "summary": "Generic tagging application for Django", "version": "0.4.6" }, "last_serial": 3250579, "releases": { "0.3": [ { "comment_text": "", "digests": { "md5": "016cfa3cbcf55cbf1c8d1a3ae4d2ea2f", "sha256": "93cbc58b7d38539308b37be49609b9ad1e31043d62bf76c38b1dddf1bc13b3f0" }, "downloads": -1, "filename": "django-tagging-0.3.tar.gz", "has_sig": false, "md5_digest": "016cfa3cbcf55cbf1c8d1a3ae4d2ea2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28984, "upload_time": "2009-08-22T17:16:52", "url": "https://files.pythonhosted.org/packages/30/17/69fb0a112d2fe628c7935e7afecc8c4e86916346deba3d44f2652b104401/django-tagging-0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "d13a532255c65c8bd3a636d290a39fbb", "sha256": "f43b8aef6cca2d092f1db927f985d8e394ce920ff0b3c924b074f7d26e184dc3" }, "downloads": -1, "filename": "django-tagging-0.3.win32.exe", "has_sig": false, "md5_digest": "d13a532255c65c8bd3a636d290a39fbb", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 82246, "upload_time": "2009-08-22T17:18:32", "url": "https://files.pythonhosted.org/packages/1c/9a/efedf27c2cdb090348a5d65187ab76f0eda08f040637ed05e954f37f6747/django-tagging-0.3.win32.exe" }, { "comment_text": "", "digests": { "md5": "a3067e1a32dea1ce49c394707a530221", "sha256": "2064138aebd505987dff0c9388d5f9c8aa77a4cb9d775539612e5b7f2b0138ed" }, "downloads": -1, "filename": "django-tagging-0.3.zip", "has_sig": false, "md5_digest": "a3067e1a32dea1ce49c394707a530221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35741, "upload_time": "2009-08-22T17:17:00", "url": "https://files.pythonhosted.org/packages/96/aa/9324d9036f831daa0d784ac34f7a41eaf4ff7c4f5721339307f542e72852/django-tagging-0.3.zip" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "a0855f2b044db15f3f8a025fa1016ddf", "sha256": "e5fbeb7ca6e0c22a9a96239095dff508040ec95171e51c69e6f8ada72ea4bce2" }, "downloads": -1, "filename": "django-tagging-0.3.1.tar.gz", "has_sig": false, "md5_digest": "a0855f2b044db15f3f8a025fa1016ddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31531, "upload_time": "2010-01-22T11:33:29", "url": "https://files.pythonhosted.org/packages/cc/ba/282231c42a36a0ca92618a636edd05909bb49985ac6a625a16e95835e035/django-tagging-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "416d6ba6e97941130743bf52b1363e20", "sha256": "b9a92a728c332bd6d215cd8efa5e7749c0f84c302bc1cd6ae51bcccf121efcd9" }, "downloads": -1, "filename": "django_tagging-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "416d6ba6e97941130743bf52b1363e20", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 23683, "upload_time": "2014-02-18T20:32:00", "url": "https://files.pythonhosted.org/packages/81/6e/9c89b7b81e4ee029158b809fbf9b4fd7831280b6bcaf349de335fbebda0d/django_tagging-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23d4040f1d5e50511c9bc94565bf4baa", "sha256": "670342ed5de97473aa73dcd99914eb6f196e744340e1c65b431b06631cec1834" }, "downloads": -1, "filename": "django-tagging-0.3.2.tar.gz", "has_sig": false, "md5_digest": "23d4040f1d5e50511c9bc94565bf4baa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30995, "upload_time": "2014-02-18T20:21:28", "url": "https://files.pythonhosted.org/packages/aa/26/ea458208c8113fd37fe199e54c39c0f5265a93c2fbdf10433ca4bb8ac375/django-tagging-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "1400787356f26883add5cf40e16ed3c4", "sha256": "16ff44d6f3a1b394a0242036ec75ef82f66d85952a71aeb135d5ad7a5be61525" }, "downloads": -1, "filename": "django_tagging-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1400787356f26883add5cf40e16ed3c4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 23743, "upload_time": "2014-10-15T14:00:00", "url": "https://files.pythonhosted.org/packages/c8/e4/a90a8f8b9a0a559d1fb25e40d18988702c86ea79d6a4710817947d039d62/django_tagging-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "094b510dfac958b8666cd3aa7fa4c649", "sha256": "8ce7a689400389438a20d2b0d7627f91c53cb660a658a80c52fb517f9a109557" }, "downloads": -1, "filename": "django-tagging-0.3.3.tar.gz", "has_sig": false, "md5_digest": "094b510dfac958b8666cd3aa7fa4c649", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30642, "upload_time": "2014-10-15T13:53:46", "url": "https://files.pythonhosted.org/packages/77/fc/a8a099214c4fe0b84465ef96ffcd715d563cbc93b5e7deaf9fa241881d92/django-tagging-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "12234b41ab35b3c19f447ae9150dc86c", "sha256": "ef7a8aad93cafaee772bde24b91476398387a8ba4864865e01816eb472d84b5c" }, "downloads": -1, "filename": "django_tagging-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12234b41ab35b3c19f447ae9150dc86c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 23864, "upload_time": "2014-11-07T15:06:58", "url": "https://files.pythonhosted.org/packages/0e/03/eb7359cc70e910582f5723e794de44c21e6a2faf2f45e0cf63325de4add9/django_tagging-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9a8782516f5488bc48038a374428243", "sha256": "a3cee6e36c3cb7ccd9d13d71ca42cb8826914d66b20c3a5e987efa12b3a83a3d" }, "downloads": -1, "filename": "django-tagging-0.3.4.tar.gz", "has_sig": false, "md5_digest": "f9a8782516f5488bc48038a374428243", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30792, "upload_time": "2014-11-07T15:06:07", "url": "https://files.pythonhosted.org/packages/83/70/566d4b1cdcc26096498d78fa4f0d61d8ee292912d90b623944ba7f623038/django-tagging-0.3.4.tar.gz" } ], "0.3.5": [], "0.3.6": [ { "comment_text": "", "digests": { "md5": "0ade003ef37f3c93aefec3a6a85bd21b", "sha256": "940a702729ee40254e9bb621361359c9affffd1257b2ad7a361233b76f920c0f" }, "downloads": -1, "filename": "django_tagging-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ade003ef37f3c93aefec3a6a85bd21b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24796, "upload_time": "2015-05-13T13:12:42", "url": "https://files.pythonhosted.org/packages/4d/d0/b7e05ae3abaf1cc68099043c75e63fc4f36176625bb9b8966eeff679651e/django_tagging-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fd92fd6ed7e05491b8cb868860ecbc8", "sha256": "419a8e5c5fdc55f9ec88a15b5ca5343d4dc9461f5302c89180aef93c025ef40f" }, "downloads": -1, "filename": "django-tagging-0.3.6.tar.gz", "has_sig": false, "md5_digest": "4fd92fd6ed7e05491b8cb868860ecbc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31914, "upload_time": "2015-05-13T13:12:06", "url": "https://files.pythonhosted.org/packages/8c/a9/f66944d09ed4321a99bc6216c90ba103feaec7a4c69cfd4f8de0cea2de35/django-tagging-0.3.6.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "0ff8d920cf38d11acbce951ed1906597", "sha256": "87673d7f3728b12a29fd5d8341e1518f2a8ebdd612a19c6d2cdc64b7594d9851" }, "downloads": -1, "filename": "django_tagging-0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ff8d920cf38d11acbce951ed1906597", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 33489, "upload_time": "2015-06-15T09:20:21", "url": "https://files.pythonhosted.org/packages/64/53/167de45054f152a2ae18e4015ed610e2fc25563f3c4af4e208100a440f45/django_tagging-0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66ce11896494171fef93bde65871bbd7", "sha256": "033e3d1b352f0dacdf8588dc83521ac602a020f34f4c1c389912eaff2915e557" }, "downloads": -1, "filename": "django-tagging-0.4.tar.gz", "has_sig": false, "md5_digest": "66ce11896494171fef93bde65871bbd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44225, "upload_time": "2015-06-15T09:20:18", "url": "https://files.pythonhosted.org/packages/c3/a2/35155aba57c45db361db3af6f42b25031b539d78eaa07efe2d21e7b9d822/django-tagging-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "b02c0613b5ab148a03e467daa03eed7a", "sha256": "7d4e319022546a3f727dc7122c43ce879a80221264962186d488df6f18093670" }, "downloads": -1, "filename": "django_tagging-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b02c0613b5ab148a03e467daa03eed7a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 33506, "upload_time": "2016-01-15T09:39:25", "url": "https://files.pythonhosted.org/packages/75/00/85c3c92e18989b3b9d6986a0a8aaa110568154959b0d6c9d26723e35856f/django_tagging-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "273296e1be51c69c116993b64c695733", "sha256": "35802daf35f90aa022d59f7d7d485c719c29c4efbde1bf966d44017e1e64602b" }, "downloads": -1, "filename": "django-tagging-0.4.1.tar.gz", "has_sig": false, "md5_digest": "273296e1be51c69c116993b64c695733", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44260, "upload_time": "2016-01-15T09:39:20", "url": "https://files.pythonhosted.org/packages/07/b2/06c4d9e33f552ed00ae05d3f59468a039b7e686582051c16453ce606f432/django-tagging-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "7d28ad5f15ea6f338d55f2ed9ce5cb51", "sha256": "e6ce38f50eae1aaf9a80116eb230de79022c67d9026004a77254cd549718da3a" }, "downloads": -1, "filename": "django_tagging-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7d28ad5f15ea6f338d55f2ed9ce5cb51", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 34116, "upload_time": "2016-05-02T15:12:57", "url": "https://files.pythonhosted.org/packages/0e/6d/4d525019ee3b1afa805045cbe31eddde047e744fcae6efbe1cac50301641/django_tagging-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d5d99c2b1b6a774f6dace38e7fdce57e", "sha256": "8188ed2decd0c999f69c43a71a3edda1d5d8eddfda69bb16ef95a30e979a0ac6" }, "downloads": -1, "filename": "django-tagging-0.4.2.tar.gz", "has_sig": false, "md5_digest": "d5d99c2b1b6a774f6dace38e7fdce57e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44838, "upload_time": "2016-05-02T15:12:50", "url": "https://files.pythonhosted.org/packages/f5/f0/c1e1b20585797b71bb9dfb7ff7c739104c105832c0960a0f8897aa6c8344/django-tagging-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "9d50844be53e760733eebb595ba060bb", "sha256": "06dde7a2a7fbe809989e71c33a86dc999972d9871e54f694005ad2941a265bec" }, "downloads": -1, "filename": "django_tagging-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9d50844be53e760733eebb595ba060bb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 34643, "upload_time": "2016-05-03T08:54:17", "url": "https://files.pythonhosted.org/packages/b2/69/b391783b6fda8963558d3338685932de95d8cc51e8f1b7f38527435171b1/django_tagging-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0da5b6090a4352a8edcaff0f51c37adb", "sha256": "1a76384bb94cb8b7d2defe252d34c32ab18c4fca516c84da78579a5bef572718" }, "downloads": -1, "filename": "django-tagging-0.4.3.tar.gz", "has_sig": false, "md5_digest": "0da5b6090a4352a8edcaff0f51c37adb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45026, "upload_time": "2016-05-03T08:53:58", "url": "https://files.pythonhosted.org/packages/ce/fc/a6bc0c286e07732ad3ca90c6db51197fc2c8659c4c93da683ba006f0309a/django-tagging-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "b7ea923d18c180fd4323a93e5a8df7de", "sha256": "2946003478a910a65e7c64ed590bfe41a2df264396e29a24ce53df97984d602f" }, "downloads": -1, "filename": "django_tagging-0.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b7ea923d18c180fd4323a93e5a8df7de", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 35211, "upload_time": "2016-09-05T20:14:01", "url": "https://files.pythonhosted.org/packages/14/98/080a01eae739003b6f3e8faf51208d3dd1945bfcdbd58e13c762c815759c/django_tagging-0.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8b87177026f98a59eedc40f22bed9c1", "sha256": "be2918de5e604f08210bea1a1e494aa9eeae3b81dd1467f7dd1547758ecb0565" }, "downloads": -1, "filename": "django-tagging-0.4.4.tar.gz", "has_sig": false, "md5_digest": "b8b87177026f98a59eedc40f22bed9c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46974, "upload_time": "2016-09-05T20:13:58", "url": "https://files.pythonhosted.org/packages/fd/6a/2f19b2159b7fec6c1f9244433cc175a901da98c92ac340e768086368e1ef/django-tagging-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "9efb89f24f77fc287446c78687d32221", "sha256": "8f1661ae3b4660798003231624fe6c1a000caea65a33654c68b6a8b56cb15d0e" }, "downloads": -1, "filename": "django_tagging-0.4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9efb89f24f77fc287446c78687d32221", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 35283, "upload_time": "2016-09-06T20:03:29", "url": "https://files.pythonhosted.org/packages/35/f1/e21944475e5275a752db32bcfcc9be81fc53613576053d095c1c0167f29b/django_tagging-0.4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "febeb2e349e9627bcda57ea7169d8e1f", "sha256": "98fc9d3bd9387d5c7c44c31a753a6f93385a6b314803488954968a75cd0b7102" }, "downloads": -1, "filename": "django-tagging-0.4.5.tar.gz", "has_sig": false, "md5_digest": "febeb2e349e9627bcda57ea7169d8e1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47090, "upload_time": "2016-09-06T20:03:26", "url": "https://files.pythonhosted.org/packages/74/a5/f72685f28be57eab57bb612cf0589ef90e738dcd912f2b37628a897ffe64/django-tagging-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "7b5622db3a0e4d51838e2698cd023884", "sha256": "3d333a28f4d19369480792ac4afcedbbfd9728054c5f7bbb7ea5db16b7d6020a" }, "downloads": -1, "filename": "django_tagging-0.4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b5622db3a0e4d51838e2698cd023884", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35847, "upload_time": "2017-10-14T21:17:07", "url": "https://files.pythonhosted.org/packages/5e/fc/9d095602bf5d2edcbc2c5721e3d243028544575a145d84ca1ec50f7e2fc1/django_tagging-0.4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c246161871ace3fd6ede129dd9bfe6e4", "sha256": "210b32af8372b8f68f261fdb7394075669222608d1e6a3bbf2031d59c826eb68" }, "downloads": -1, "filename": "django-tagging-0.4.6.tar.gz", "has_sig": false, "md5_digest": "c246161871ace3fd6ede129dd9bfe6e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45228, "upload_time": "2017-10-14T21:17:08", "url": "https://files.pythonhosted.org/packages/fe/2e/eca2a6e65ff8884b1f8f2cea2f592b330c0971bf2a233d194bfde4878e20/django-tagging-0.4.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7b5622db3a0e4d51838e2698cd023884", "sha256": "3d333a28f4d19369480792ac4afcedbbfd9728054c5f7bbb7ea5db16b7d6020a" }, "downloads": -1, "filename": "django_tagging-0.4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b5622db3a0e4d51838e2698cd023884", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35847, "upload_time": "2017-10-14T21:17:07", "url": "https://files.pythonhosted.org/packages/5e/fc/9d095602bf5d2edcbc2c5721e3d243028544575a145d84ca1ec50f7e2fc1/django_tagging-0.4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c246161871ace3fd6ede129dd9bfe6e4", "sha256": "210b32af8372b8f68f261fdb7394075669222608d1e6a3bbf2031d59c826eb68" }, "downloads": -1, "filename": "django-tagging-0.4.6.tar.gz", "has_sig": false, "md5_digest": "c246161871ace3fd6ede129dd9bfe6e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45228, "upload_time": "2017-10-14T21:17:08", "url": "https://files.pythonhosted.org/packages/fe/2e/eca2a6e65ff8884b1f8f2cea2f592b330c0971bf2a233d194bfde4878e20/django-tagging-0.4.6.tar.gz" } ] }