{ "info": { "author": "Wojciech Banas", "author_email": "fizista@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 :: 3" ], "description": "============\nInstructions\n============\n\nThis is a reusable django app which adds some templatetags to django-taggit_.\n\nThis is a fork the application \"django-taggit-templatetags\".\n\ndjango-taggit-templatetags2 requires Django 1.6 or greater.\n\nThe application works well under python 2.7 and 3.x\n\nInstallation\n============\n\nJust install ``django-taggit-templatetags2`` via ``pip``::\n\n $ pip install django-taggit-templatetags2\n\nAfter installing and configuring django-taggit_, just add ``taggit_templatetags2`` to your ``INSTALLED_APPS`` in your ``settings.py``::\n\n INSTALLED_APPS = (\n ...\n 'taggit_templatetags2',\n ...\n )\n\nUsage\n=====\n\nNow there are some templatetags enabled, at the moment only to create lists of\ntags and tag-clouds.\n\nIn your templates, you need to load ``taggit_templatetags2_tags``::\n\n ...\n {% load taggit_templatetags2_tags %}\n ...\n\n---------\nTagdetail\n---------\n\nList of tags for the selected object::\n\n {% get_tags_for_object as \"tags\" %}\n\n--------\nTaglists\n--------\n\nAfter loading ``taggit_templatetags2_tags`` you can create a list of tags for the\nwhole project (in the sense of djangoproject), for an app (in the sense of djangoapp),\nfor a model-class (to get a list for an instance of a model, just use its tag-field).\n\nFor the tags of a project, just do::\n\n {% get_taglist as tags %}\n\nFor the tags of an app, just do::\n\n {% get_taglist as tags for 'yourapp' %}\n\nFor the tags of a model, just do::\n\n {% get_taglist as tags for 'yourapp.yourmodel' %}\n\nYou can also customize the name of the tags manager in your model (the default is *tags*)::\n\n {% get_taglist as tags for 'yourapp.yourmodel:yourtags' %}\n\nNo matter what you do, you have a list of tags in the ``tags`` template variable.\nYou can now iterate over it::\n\n \n\nAs you can see, each tag has an attribute ``num_times`` which declares how many\ntimes it was used. The list of tags is sorted descending by ``num_times``.\n\nInclusion-Tag\n-------------\n\nFor convenience, there's an inclusion-tag. It's used analogue. For example,\nfor a taglist of a model, just do::\n\n {% include_taglist 'yourapp.yourmodel' %}\n\n---------\nTagclouds\n---------\n\nA very popular way to navigate through tags is a tagcloud_. This app provides\nsome tags for that::\n\n {% get_tagcloud as tags %}\n\nor::\n\n {% get_tagcloud as tags for 'yourapp' %}\n\nor::\n\n {% get_tagcloud as tags for 'yourapp.yourmodel' %}\n\nrespectivly. The resulting list of tags is ordered by their ``name`` attribute.\nBesides the ``num_items`` attribute, there's a ``weight`` attribute. Its maximum\nand minimum may be specified as the settings_ section reads.\n\nInclusion-Tag: tag cloud\n------------------------\n\nEven for the tagcloud there's an inclusion-tag. For example, for a tagcloud\nof a model, just do::\n\n {% include_tagcloud 'yourapp.yourmodel' %}\n\n\nInclusion-Tag: tag canvas\n-------------------------\n\nTagCanvas_ is a Javascript class which will draw and animate a HTML5 canvas\nbased tag cloud. You can use this library in your application as follows::\n\n \n {% include \"taggit_templatetags2/tagcanvas_include_js_static.html\" %}\n\n {% include_tagcanvas 'element_id' 'width px' 'height px' 'some-url-name' 'yourapp.yourmodel' %}\n\n- element_id - name to create identifiers for html tags\n- some-url-name - url to view a list of objects for the selected tag. Default: *tagcanvas-list*.\n For example, some-url-name='myurlname', then it must be an entry in urls.py\n file like this::\n\n from taggit_templatetags2.views import TagCanvasListView\n\n urlpatterns = patterns(\n ...\n url(r'^tag-list/(?P.*)/(?P.*)/',\n TagCanvasListView.as_view(), name='myurlname'),\n )\n\nOr you can use the default view, and then you have to add the following things:\n\n- in urls.py::\n\n from taggit_templatetags2 import urls as taggit_templatetags2_urls\n urlpatterns = patterns(\n ...\n url(r'^tags/', include('taggit_templatetags2.urls')),\n )\n\n- override template \"taggit_templatetags2/tagcanvas_base.html\" and\n- override template \"taggit_templatetags2/tagcanvas_list_item.html\" to customize the look\n\nTo use this inclusion-tag, make sure that 'django.core.context_processors.static'\nappears somewhere in your TEMPLATE_CONTEXT_PROCESSORS setting.\n\n\n\n.. _settings:\n\nSettings\n========\n\nThere are a few settings to be set:\n\nTAGGIT_TAGCLOUD_MIN (default: 1.0)\n This specifies the minimum of the weight attribute of a tagcloud's tags.\n\nTAGGIT_TAGCLOUD_MAX (default: 6.0)\n This specifies the maximum of the weight attribute of a tagcloud's tags.\n\nIf you want to use the weight as font-sizes, just do as follows::\n\n {{tag}}\n\nSo the weights are converted to integer values.\n\nIf you're using your own Tag and/or TaggedItem models rather than the default\nones (`Custom Tagging`_), you can specify a tuple for each model (app,model_name)\n\nTAGGIT_TAG_MODEL = ('myapp','MyTag')\n default: ('taggit', 'Tag')\n\nTAGGIT_TAGGED_ITEM_MODEL = ('myapp','MyTaggedItem')\n default: ('taggit', 'TaggedItem')\n\nTAGGIT_LIMIT = 234\n Number items for tag cloud.\n default: 10\n\nTAGGIT_TAG_LIST_ORDER_BY = 'name'\n Order for the queryset used to generate the list.\n default: -num_times\n\nTAGGIT_TAG_CLOUD_ORDER_BY = '-num_times'\n Order for the queryset used to generate the list.\n default: name\n\nTesting\n=======\n\nClone code repository::\n\n $ git clone https://github.com/fizista/django-taggit-templatetags.git\n\nInstallation dependencies needed to test the application::\n\n $ pip install -e [tests]\n\nStarting tests::\n\n $ python ./develop.py test\n\nStarting test coverage::\n\n $ python ./develop.py manage test\n\nStarting tox tests::\n\n $ tox\n\nThanks\n======\n\nThanks to the python- and django-community, in particular to `Alex Gaynor`_,\nthe inventor of django-taggit_ and a wonderful guy to argue with.\nThanks to `Mathijs de Bruin`_ as well for his helpful pull requests.\n\n.. _django-taggit: http://pypi.python.org/pypi/django-taggit\n.. _tagcloud: http://www.wikipedia.org/wiki/Tagcloud\n.. _Alex Gaynor: http://alexgaynor.net/\n.. _Mathijs de Bruin: http://github.com/dokterbob\n.. _Custom Tagging: http://django-taggit.readthedocs.org/en/latest/custom_tagging.html\n.. _TagCanvas: http://www.goat1000.com/tagcanvas.php", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/fizista/django-taggit-templatetags2", "keywords": "django taggit tags tagcloud taglist tagging tag", "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "django-taggit-templatetags2", "package_url": "https://pypi.org/project/django-taggit-templatetags2/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-taggit-templatetags2/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/fizista/django-taggit-templatetags2" }, "release_url": "https://pypi.org/project/django-taggit-templatetags2/1.6.1/", "requires_dist": null, "requires_python": null, "summary": "Templatetags for django-taggit.", "version": "1.6.1" }, "last_serial": 2508515, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "d2738db836f60cfcf04c0ddb7c1cfbd7", "sha256": "99be68bfde3d0517a39644ca02b168b7ac253fa8a4025ed1effd62426eb611c5" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.0.0.linux-x86_64.exe", "has_sig": false, "md5_digest": "d2738db836f60cfcf04c0ddb7c1cfbd7", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 75429, "upload_time": "2014-09-04T08:28:23", "url": "https://files.pythonhosted.org/packages/11/ef/32e34e15b3768fd51edfb7817a97555a7a8e878afd7d0a67eebf81edb829/django-taggit-templatetags2-1.0.0.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "da20b93d3cfb283506517d543bff289d", "sha256": "fc292ed19ca397b460691e6c3728d1f6096c38c1ef404526059d7bf14b4057f1" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.0.0.tar.gz", "has_sig": false, "md5_digest": "da20b93d3cfb283506517d543bff289d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8454, "upload_time": "2014-09-04T08:28:20", "url": "https://files.pythonhosted.org/packages/be/65/4eb224b851402c57373b36976b07dea4ae43c3efc17bbe00329bf961c6f0/django-taggit-templatetags2-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "8c08aab122bd589e79b8fc2607e7b219", "sha256": "c826fc43c36247f2278486b7039efacce984a5119ed19c50980efbe252188db8" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.0.1.linux-x86_64.exe", "has_sig": false, "md5_digest": "8c08aab122bd589e79b8fc2607e7b219", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 76164, "upload_time": "2014-09-04T09:50:57", "url": "https://files.pythonhosted.org/packages/89/2d/2c49da50a638f6beadb76344c44e600c9c4a4f16cbc33860c5c8c993086b/django-taggit-templatetags2-1.0.1.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "6470dbe28c2b21ecdb3bcf4e5bcb4ded", "sha256": "40bd126ccfe2c05824fe0ee3a57a9d36289ccf90eb5d092b6ffdc31ac5b69f5b" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.0.1.tar.gz", "has_sig": false, "md5_digest": "6470dbe28c2b21ecdb3bcf4e5bcb4ded", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8449, "upload_time": "2014-09-04T09:50:54", "url": "https://files.pythonhosted.org/packages/07/c4/f3745ebaf6133712288cc75d812b9760475e273dea619fd726a1f88f64e0/django-taggit-templatetags2-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "3506cb4e6aef39aa0ec61d045861f15f", "sha256": "a800bdb842676292172b9ff3c0f40c9a07e663036a8b3396bc7016feafc19686" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.1.0.tar.gz", "has_sig": false, "md5_digest": "3506cb4e6aef39aa0ec61d045861f15f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55055, "upload_time": "2014-09-08T23:46:21", "url": "https://files.pythonhosted.org/packages/57/9d/ca8693382da67c4df41b5a9843b6e3efe04662f5a2590c106a320d1e020a/django-taggit-templatetags2-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "8dc0803f3b0040328275d35ebd70180c", "sha256": "76c346e0bd4d480d8b8d71f5a0a7c3ba4fff9f4ddc2d865e15dd2ecc6a05ed17" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.1.1.tar.gz", "has_sig": false, "md5_digest": "8dc0803f3b0040328275d35ebd70180c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55069, "upload_time": "2014-09-08T23:51:08", "url": "https://files.pythonhosted.org/packages/b3/8e/8f1142794f79bf748940a0218f1f78617d5c57f79aac09f2111f618e7e06/django-taggit-templatetags2-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "81bdc9774e70b10b6a0fe43cd2a907ac", "sha256": "11b88c1cfb5293023cb96a4bbaaa4c1919a77b4e0b8a668fd270e697c5977abd" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.1.2.tar.gz", "has_sig": false, "md5_digest": "81bdc9774e70b10b6a0fe43cd2a907ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55075, "upload_time": "2014-09-09T00:01:56", "url": "https://files.pythonhosted.org/packages/89/d8/0afb5bf830a4ca764fb579a31f81aeabcf09464c5a4e1dd9a50c5d9d3667/django-taggit-templatetags2-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "0ac30fa205011db47cbdad851991328d", "sha256": "1092df9dc8be57b8d483de95333ac20aabe65a417f8e56896ddf115c40a1b555" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.1.3.tar.gz", "has_sig": false, "md5_digest": "0ac30fa205011db47cbdad851991328d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55080, "upload_time": "2014-09-09T00:06:14", "url": "https://files.pythonhosted.org/packages/98/19/edd97a469317120aef41ac027456effc11843349b444a2c6b8a44db34b22/django-taggit-templatetags2-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "c9aa21b0256d665985598f62aa642c74", "sha256": "01fa2bb0052c5a5c00a52d4f1891f31f0a35117a62324aac9e2ae69db57855f2" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.1.4.tar.gz", "has_sig": false, "md5_digest": "c9aa21b0256d665985598f62aa642c74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55072, "upload_time": "2014-10-04T11:55:07", "url": "https://files.pythonhosted.org/packages/cf/4a/d1de47e94a1793021f5d52dcc32a0eb6349b306046207e97efbe8d58449d/django-taggit-templatetags2-1.1.4.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "854690a8f37f72fc4a238b4c82cf722b", "sha256": "ff48d954e86f49386f94609d88b88bf1fc4ff6573789d9cdca47d5421e018b03" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.2.0.tar.gz", "has_sig": false, "md5_digest": "854690a8f37f72fc4a238b4c82cf722b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55285, "upload_time": "2014-10-14T17:21:03", "url": "https://files.pythonhosted.org/packages/08/2a/c681bdf6fe9915c1583c436e0ee988216d3132f3233f98185469307bd0d5/django-taggit-templatetags2-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "77563c8535f48144f91e909f0b462c41", "sha256": "9cd4f880bf603db3e044c03c4396fd38ce40909b62b977295b8a90596b01a446" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.3.0.tar.gz", "has_sig": false, "md5_digest": "77563c8535f48144f91e909f0b462c41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55340, "upload_time": "2014-11-19T11:14:07", "url": "https://files.pythonhosted.org/packages/ce/b2/742924adde81666abfe29eccc63862ca81ebe39a515deb72be68d03c1cd7/django-taggit-templatetags2-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "b9012d4af6504afddb1e02d9cd742633", "sha256": "47e336cdc7a95f06ddb32f2b9b7522aa523eddd5910fdaab99f35b4d31e154bf" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.4.0.tar.gz", "has_sig": false, "md5_digest": "b9012d4af6504afddb1e02d9cd742633", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55434, "upload_time": "2015-02-28T21:31:52", "url": "https://files.pythonhosted.org/packages/4f/3b/a1660112914357378ac9e35f6bb2a009386fee7b13701be4529dc3abc1dc/django-taggit-templatetags2-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "25f4053a4035b64f045305e846e2d88e", "sha256": "3f85859bc99b3021041973230d6a254838b6c2dfb62591565ec1b64fd8e86941" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.5.0.tar.gz", "has_sig": false, "md5_digest": "25f4053a4035b64f045305e846e2d88e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64223, "upload_time": "2016-02-24T18:28:51", "url": "https://files.pythonhosted.org/packages/30/27/2471977bb26019842d497de01682e9d28d092d748dea8093d4292b62fb9b/django-taggit-templatetags2-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "4870e4386cd17c005f2b8cbaa8e2f11b", "sha256": "328bc7cf0fbeba4d7172e788a349afd21d166c1f63abdbd5b19c8f13a226e044" }, "downloads": -1, "filename": "django_taggit_templatetags2-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4870e4386cd17c005f2b8cbaa8e2f11b", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 67628, "upload_time": "2016-02-24T19:28:17", "url": "https://files.pythonhosted.org/packages/37/c0/b0949c49c2bac4ba36f7de92c325bf14a70138d98c8f7943d742f8a99620/django_taggit_templatetags2-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "381f82ae9487bda15056d63bdfd60bbe", "sha256": "16b0cd3e4eaaf100d1d2b1c4b4fa5815f9ffefeb55f54e4604449683d0d03ae1" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.5.1.tar.gz", "has_sig": false, "md5_digest": "381f82ae9487bda15056d63bdfd60bbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64228, "upload_time": "2016-02-24T19:28:12", "url": "https://files.pythonhosted.org/packages/22/73/c6ee3f2b230d66abf8f19d335efddbca38da04f219297ffbef366544d3cf/django-taggit-templatetags2-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "built for Linux-4.4.0-24-generic-x86_64-with-glibc2.9", "digests": { "md5": "3d8634de61a7c118593d83ba0c7be626", "sha256": "17914db7ead62d5bcb5f54a59fbb628701224fcc43e837f048707a659211ef97" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.5.2.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "3d8634de61a7c118593d83ba0c7be626", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 62021, "upload_time": "2016-06-24T10:57:53", "url": "https://files.pythonhosted.org/packages/bd/c1/6ffd82efd551f56e15b2de3c211d3e45dc03085f4f3d2be8f540f73ebbb2/django-taggit-templatetags2-1.5.2.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e3324063fce76ae40527a13b0c91137c", "sha256": "2e5023e60ac51e175cf1b796e475647803f0e41c5457af9ee523d493a5406e23" }, "downloads": -1, "filename": "django_taggit_templatetags2-1.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3324063fce76ae40527a13b0c91137c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 67594, "upload_time": "2016-06-24T10:57:59", "url": "https://files.pythonhosted.org/packages/c6/6b/6b9dca165609201c4a0f8608798cf35badc4e1d23f99477aff4fd0364c9e/django_taggit_templatetags2-1.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b735ffeb14e4b61e2985f9120b238277", "sha256": "28f36f86adc6c25551c2973fcec66c002f6382ceb2fae157ac569b34aca8b336" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.5.2.tar.gz", "has_sig": false, "md5_digest": "b735ffeb14e4b61e2985f9120b238277", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64217, "upload_time": "2016-06-24T10:57:46", "url": "https://files.pythonhosted.org/packages/e2/c1/604596179be9f6cfd2c51fba4b4e5218bf66fac1c0f13c9ffd5fe857fb94/django-taggit-templatetags2-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "built for Linux-4.4.0-36-generic-x86_64-with-glibc2.9", "digests": { "md5": "e1426fddbfc04539ef2a2ff14b6e9134", "sha256": "6bf308d215fd2bbfd6a63c0c772f93686cc72c5a36bcedc22f7b11db2631a91a" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.5.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "e1426fddbfc04539ef2a2ff14b6e9134", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 62022, "upload_time": "2016-09-05T10:21:08", "url": "https://files.pythonhosted.org/packages/54/ad/1042c8a94bd71cdcbc19a1a3ef5edbb1e9773a7c2abe7b43556f7aacc2fc/django-taggit-templatetags2-1.5.3.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "ad4b526719d918a93b15efba5be730b0", "sha256": "6f70ae9dd628c5ec47f7df488ba85bdf5ddbd2d310df970af2bfb1edc39b56b2" }, "downloads": -1, "filename": "django_taggit_templatetags2-1.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ad4b526719d918a93b15efba5be730b0", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 67586, "upload_time": "2016-09-05T10:21:11", "url": "https://files.pythonhosted.org/packages/1a/20/f16f6a3677b9b7bbe6347c5bd99ae388982a0817180eb4cd0de893033b8e/django_taggit_templatetags2-1.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04dd1d227c2a9bd8522f263d3fb1ef43", "sha256": "d5423c2b8e50352007fec6ad7b8a8cfa51fccf9f085aa31f9de628b6dcd6bec4" }, "downloads": -1, "filename": "django-taggit-templatetags2-1.5.3.tar.gz", "has_sig": false, "md5_digest": "04dd1d227c2a9bd8522f263d3fb1ef43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64209, "upload_time": "2016-09-05T10:21:05", "url": "https://files.pythonhosted.org/packages/f7/f9/ef6533d70d38bacd84876d30e7e0550914440e3ca6d66962cf76fd4b5893/django-taggit-templatetags2-1.5.3.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "413c90c1be1797774519dcdeeeeb0394", "sha256": "af584d1f4614d556d35b2dfff384f96cf32fa344f3173feccdf706f8af88bdf6" }, "downloads": -1, "filename": "django_taggit_templatetags2-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "413c90c1be1797774519dcdeeeeb0394", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 67583, "upload_time": "2016-12-09T11:01:37", "url": "https://files.pythonhosted.org/packages/d3/9e/f0f332b6ccf844d5855c6771afa83b5c2df7f825a83b6d8bf52dfed7d9ea/django_taggit_templatetags2-1.6.0-py2.py3-none-any.whl" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "cadb81414020a22ecdb690d52719525f", "sha256": "eb41d76bdcc4f4e2979dfa93e34f98380a92296c4658646c522b514b70040322" }, "downloads": -1, "filename": "django_taggit_templatetags2-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cadb81414020a22ecdb690d52719525f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 67597, "upload_time": "2016-12-09T11:05:42", "url": "https://files.pythonhosted.org/packages/97/d9/8e620d79fa9c0c2b50d1c3f7e677c8afe9236c97a7809565cc906d1c33b7/django_taggit_templatetags2-1.6.1-py2.py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cadb81414020a22ecdb690d52719525f", "sha256": "eb41d76bdcc4f4e2979dfa93e34f98380a92296c4658646c522b514b70040322" }, "downloads": -1, "filename": "django_taggit_templatetags2-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cadb81414020a22ecdb690d52719525f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 67597, "upload_time": "2016-12-09T11:05:42", "url": "https://files.pythonhosted.org/packages/97/d9/8e620d79fa9c0c2b50d1c3f7e677c8afe9236c97a7809565cc906d1c33b7/django_taggit_templatetags2-1.6.1-py2.py3-none-any.whl" } ] }