{ "info": { "author": "Andy Mikhailenko", "author_email": "entrop@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: General" ], "description": "django-autoslug\n~~~~~~~~~~~~~~~\n\n.. image:: https://img.shields.io/coveralls/neithere/django-autoslug.svg\n :target: https://coveralls.io/r/neithere/django-autoslug\n\n.. image:: https://img.shields.io/travis/justinmayer/django-autoslug.svg\n :target: https://travis-ci.org/justinmayer/django-autoslug\n\n.. image:: https://img.shields.io/pypi/format/django-autoslug.svg\n :target: https://pypi.python.org/pypi/django-autoslug\n\n.. image:: https://img.shields.io/pypi/status/django-autoslug.svg\n :target: https://pypi.python.org/pypi/django-autoslug\n\n.. image:: https://img.shields.io/pypi/v/django-autoslug.svg\n :target: https://pypi.python.org/pypi/django-autoslug\n\n.. image:: https://img.shields.io/pypi/pyversions/django-autoslug.svg\n :target: https://pypi.python.org/pypi/django-autoslug\n\n.. image:: https://img.shields.io/pypi/dd/django-autoslug.svg\n :target: https://pypi.python.org/pypi/django-autoslug\n\n.. image:: https://readthedocs.org/projects/django-autoslug/badge/?version=stable\n :target: http://django-autoslug.readthedocs.org/en/stable/\n\n.. image:: https://readthedocs.org/projects/django-autoslug/badge/?version=latest\n :target: http://django-autoslug.readthedocs.org/en/latest/\n\nDjango-autoslug is a reusable Django library that provides an improved\nslug field which can automatically:\n\na) populate itself from another field,\nb) preserve uniqueness of the value and\nc) use custom ``slugify()`` functions for better i18n.\n\nThe field is highly configurable.\n\nRequirements\n------------\n\n*Python 2.7, 3.5+, or PyPy*.\n\n*Django 1.7.10* or higher.\n\nIt may be possible to successfully use django-autoslug in other environments\nbut they are not tested.\n\n.. note::\n\n PyPy3 is not officially supported only because there were some problems with\n permissions and ``__pycache__`` on CI unrelated to django-autoslug itself.\n\nExamples\n--------\n\nA simple example:\n\n.. code-block:: python\n\n from django.db.models import CharField, Model\n from autoslug import AutoSlugField\n\n class Article(Model):\n title = CharField(max_length=200)\n slug = AutoSlugField(populate_from='title')\n\nMore complex example:\n\n.. code-block:: python\n\n from django.db.models import CharField, DateField, ForeignKey, Model\n from django.contrib.auth.models import User\n from autoslug import AutoSlugField\n\n class Article(Model):\n title = CharField(max_length=200)\n pub_date = DateField(auto_now_add=True)\n author = ForeignKey(User)\n slug = AutoSlugField(populate_from=lambda instance: instance.title,\n unique_with=['author__name', 'pub_date__month'],\n slugify=lambda value: value.replace(' ','-'))\n\nDocumentation\n-------------\n\nSee the `complete documentation `_\non ReadTheDocs. It is built automatically for the latest version.\n\nCommunity\n---------\n\nThis application is maintained by Justin Mayer. It was initially created by\nAndy Mikhailenko and then improved by other developers. They are listed in\n`AUTHORS.rst`.\n\nPlease feel free to file issues and/or submit patches.\n\nSee `CONTRIBUTING.rst` for hints related to the preferred workflow.\n\n\nLicensing\n---------\n\nDjango-autoslug is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public License as\npublished by the Free Software Foundation; either version 3 of the\nLicense, or (at your option) any later version.\n\nDjango-autoslug is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this program; see the file COPYING.LESSER. If not,\nsee `GNU licenses `_.\n\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/django-autoslug/", "download_url": "https://github.com/justinmayer/django-autoslug/archive/master.zip", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/justinmayer/django-autoslug/", "keywords": "django field slug auto unique transliteration i18n", "license": "GNU Lesser General Public License (LGPL), Version 3", "maintainer": "Justin Mayer", "maintainer_email": "", "name": "django-autoslug", "package_url": "https://pypi.org/project/django-autoslug/", "platform": "", "project_url": "https://pypi.org/project/django-autoslug/", "project_urls": { "Download": "https://github.com/justinmayer/django-autoslug/archive/master.zip", "Homepage": "https://github.com/justinmayer/django-autoslug/" }, "release_url": "https://pypi.org/project/django-autoslug/1.9.6/", "requires_dist": [ "pytils (>=0.2) ; extra == 'cyrillic'", "translitcodec (>=0.3) ; extra == 'translitcodec'" ], "requires_python": "", "summary": "An automated slug field for Django.", "version": "1.9.6" }, "last_serial": 5608182, "releases": { "1.0.1": [ { "comment_text": "built for Linux-2.6.28-11-generic-x86_64-with-glibc2.4", "digests": { "md5": "27cb0b9991c465999d54a49ded1a314c", "sha256": "20b826b889fab92042f7f62c7b66b323fb34ae1591fb4ff5d28e2a59f3a1e7c2" }, "downloads": -1, "filename": "django-autoslug-1.0.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "27cb0b9991c465999d54a49ded1a314c", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 5341, "upload_time": "2009-05-15T03:14:56", "url": "https://files.pythonhosted.org/packages/0f/d8/ce7983713ab56e30067bab93a58d847e2a33a73dd517e2963b9318926c52/django-autoslug-1.0.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b0da7208e809c057a42d549fd79d031b", "sha256": "ac09126ce38c7fe74126a3bc9675450c6104ac012a6a99e5664598b26d894240" }, "downloads": -1, "filename": "django-autoslug-1.0.1.tar.gz", "has_sig": false, "md5_digest": "b0da7208e809c057a42d549fd79d031b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4091, "upload_time": "2009-05-15T03:14:55", "url": "https://files.pythonhosted.org/packages/f6/2b/ea07e03bfd45d3ad179fc168399049e978e88d78b679cacba6a55b098ad6/django-autoslug-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "built for Linux-2.6.28-13-generic-x86_64-with-glibc2.4", "digests": { "md5": "6773dd0468bb4298745d87e43d672de8", "sha256": "4afced1e7f90a62b909f797f87b91422b5afce9d2b6658e3665844d2f4091257" }, "downloads": -1, "filename": "django-autoslug-1.0.2.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "6773dd0468bb4298745d87e43d672de8", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 5818, "upload_time": "2009-06-24T12:10:25", "url": "https://files.pythonhosted.org/packages/13/e2/436e564cd652c6e8909764a09987eaa163eb7bd7cc88ff848a4c19fe9b55/django-autoslug-1.0.2.linux-x86_64.tar.gz" } ], "1.0.3": [ { "comment_text": "built for Linux-2.6.28-13-generic-x86_64-with-glibc2.4", "digests": { "md5": "21f697b078694fb1444e9dda69657089", "sha256": "569ea3366f626dab9502c76eab902bf8e7dc41768c73b0757ad0374f72f98546" }, "downloads": -1, "filename": "django-autoslug-1.0.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "21f697b078694fb1444e9dda69657089", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 5819, "upload_time": "2009-07-08T01:22:46", "url": "https://files.pythonhosted.org/packages/94/4f/d4bc8462f0d755d2e6939e947cb454eda676542e8ff05fcd11bafabfbaff/django-autoslug-1.0.3.linux-x86_64.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "0b43105579c384d78b256648a3742fb9", "sha256": "3aed5c110ca41e4a5310db285b79c608850763db5f6e99ad043c1602d2c1e997" }, "downloads": -1, "filename": "django-autoslug-1.1.0.tar.gz", "has_sig": false, "md5_digest": "0b43105579c384d78b256648a3742fb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4917, "upload_time": "2009-07-10T21:10:14", "url": "https://files.pythonhosted.org/packages/ef/16/e4ca7ea7f2beebae9bf78a3eec9403a88e3e88f981229d6580b8cd9f3f12/django-autoslug-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "ac367ef57abc5fe68e5d6085d178082e", "sha256": "71286439b6a2f94a913bde0e19ed30478bd478e2426f12a0df4be95e933a00fb" }, "downloads": -1, "filename": "django-autoslug-1.1.1.tar.gz", "has_sig": false, "md5_digest": "ac367ef57abc5fe68e5d6085d178082e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5777, "upload_time": "2009-07-22T02:28:40", "url": "https://files.pythonhosted.org/packages/35/ee/0d2f9ec53147d689bb2827efc1d58fd2042f6beed094decc1d7e041cf5a1/django-autoslug-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "c5c39acc3b6687d6b608c2a6d1c81e70", "sha256": "b688302be7746cf1450323544613faad3b6b0707e32df53c2d1535ad1994e0a6" }, "downloads": -1, "filename": "django-autoslug-1.1.2.tar.gz", "has_sig": false, "md5_digest": "c5c39acc3b6687d6b608c2a6d1c81e70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5759, "upload_time": "2009-08-14T13:18:18", "url": "https://files.pythonhosted.org/packages/61/40/000f724bebec3af2d37e0da8cf01ecbccc1574788f7a2e8449ce06a5147b/django-autoslug-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "3a36b92e42e9303ad35a537b4995972e", "sha256": "65c8cc73aab33a1010fa3f1ae96625fb923f30437ce9550743fd42f0feab991a" }, "downloads": -1, "filename": "django-autoslug-1.1.3.tar.gz", "has_sig": false, "md5_digest": "3a36b92e42e9303ad35a537b4995972e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6138, "upload_time": "2009-08-29T19:22:30", "url": "https://files.pythonhosted.org/packages/75/77/e826a4fa21af1da5544dc00e0e7585b6eee23538c0fc0ca447d90b873266/django-autoslug-1.1.3.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "5350ad95e5ed5a5d46b06797f20e33df", "sha256": "7c1ea562f854ee868b9a0397875168193abae49f63dfe6b08238d5f4e56f1991" }, "downloads": -1, "filename": "django-autoslug-1.2.0.tar.gz", "has_sig": false, "md5_digest": "5350ad95e5ed5a5d46b06797f20e33df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6753, "upload_time": "2009-09-09T20:50:50", "url": "https://files.pythonhosted.org/packages/81/89/66e6946dc19c72d6a2ec7f6c03df8a56f7670b674d4b5fbd28313731c461/django-autoslug-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "b6ed051c8ec39d6329de00fde12f2d29", "sha256": "2f793ad1493584780d8b92f89816a5e96a3542d93e4135de4e5c00fa0e5f2604" }, "downloads": -1, "filename": "django-autoslug-1.2.1.tar.gz", "has_sig": false, "md5_digest": "b6ed051c8ec39d6329de00fde12f2d29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6743, "upload_time": "2009-09-10T07:10:25", "url": "https://files.pythonhosted.org/packages/54/b6/de6ba36741982192eb17c46ae54fcf04e12a52c6680f605ba1a2fbbae7d2/django-autoslug-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "55f5b891b126a1b81e0a631f4394c11d", "sha256": "7ecee09db6ce2625bac808fa3497b8283a8ff73d53607f337310d01c51934e21" }, "downloads": -1, "filename": "django-autoslug-1.3.0.tar.gz", "has_sig": false, "md5_digest": "55f5b891b126a1b81e0a631f4394c11d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7398, "upload_time": "2009-10-05T12:29:42", "url": "https://files.pythonhosted.org/packages/1b/02/611f219045f6d74d00f814da57a6a0c92746a6e1d1cd8f79f0e9bb979991/django-autoslug-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "cbd4324c8f499102172cee73a9924122", "sha256": "db6c2ee3c06afde3d9ec730b4c9f648e4cb279a05665e55b2797d29655ae5c3f" }, "downloads": -1, "filename": "django-autoslug-1.3.1.tar.gz", "has_sig": false, "md5_digest": "cbd4324c8f499102172cee73a9924122", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7947, "upload_time": "2009-10-06T14:40:04", "url": "https://files.pythonhosted.org/packages/a9/ac/722f0dcf4a065f3aa6da70f0d47bc7487f2a456cd0f3f8fa6c75b0c4a0e5/django-autoslug-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "754d35e925c2684bfadb36f554cf7526", "sha256": "8cb8bd816d1e5cc477608f9f8c321a09119292f79ef5c54169cd1d0108ff023f" }, "downloads": -1, "filename": "django-autoslug-1.3.2.tar.gz", "has_sig": false, "md5_digest": "754d35e925c2684bfadb36f554cf7526", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7902, "upload_time": "2009-10-07T06:14:57", "url": "https://files.pythonhosted.org/packages/b3/c0/fff874f1c6720afc64563000d8bca13ff404255702d39cda2352f856e40e/django-autoslug-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "built for Linux-2.6.31-14-generic-x86_64-with-glibc2.4", "digests": { "md5": "13a1b16966313b809b3215864c5a8269", "sha256": "3cf5ab094183e1faf2e7260aa520d88f22fa327a81112372fbf25935d63c268b" }, "downloads": -1, "filename": "django-autoslug-1.3.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "13a1b16966313b809b3215864c5a8269", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 11551, "upload_time": "2009-11-07T03:15:43", "url": "https://files.pythonhosted.org/packages/11/36/05c4736641b1fe04c48cb06a01c8d7e789abe14d7bd569f8379d5c5fc6ad/django-autoslug-1.3.3.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "5be5669120c0a42555052f81ad6f2c97", "sha256": "7d618ad0838407d760bedf40c794db01cedfa2774767867534e514790de10fb8" }, "downloads": -1, "filename": "django-autoslug-1.3.3.tar.gz", "has_sig": false, "md5_digest": "5be5669120c0a42555052f81ad6f2c97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7954, "upload_time": "2009-11-07T03:15:13", "url": "https://files.pythonhosted.org/packages/81/12/8dce40261c32cf623e0f89badfcb0eeaa2ccaefe446c4d07481bcf32d106/django-autoslug-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "fcdec3b40cc27dfbbe0c34da87108e31", "sha256": "f7298ea7843e553074c8a3d0b1c4780f7b2e9881ea631d3ad0859e89f4e38085" }, "downloads": -1, "filename": "django-autoslug-1.3.4.tar.gz", "has_sig": false, "md5_digest": "fcdec3b40cc27dfbbe0c34da87108e31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7956, "upload_time": "2009-11-09T03:02:36", "url": "https://files.pythonhosted.org/packages/d2/d6/6373b08df504ef9541b6b11281d23bd607dafffda54fa56101e810e6befd/django-autoslug-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "5db9bc3cefc6c9f1e370402916e69e07", "sha256": "9244963056e03f55deb470b6dd524b2e9e248feacc932a36b39ecea8df7e6df3" }, "downloads": -1, "filename": "django-autoslug-1.3.5.tar.gz", "has_sig": false, "md5_digest": "5db9bc3cefc6c9f1e370402916e69e07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8025, "upload_time": "2009-11-11T08:42:01", "url": "https://files.pythonhosted.org/packages/ac/cc/e54faafa33b5612b29cd47fc3e7c9c3d913e03cfd3c59c54739c941fae7e/django-autoslug-1.3.5.tar.gz" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "8e0f07471f8c22f6a05e4523afe5296c", "sha256": "7f110b1713098cc8539b25d1e0296c6ba2761bb77ca377e73ec30ae574b7b4b4" }, "downloads": -1, "filename": "django-autoslug-1.3.6.tar.gz", "has_sig": false, "md5_digest": "8e0f07471f8c22f6a05e4523afe5296c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8273, "upload_time": "2009-11-20T05:32:11", "url": "https://files.pythonhosted.org/packages/08/71/2246689fc02b2bed1bd0a0c24d4040128e48d4996e5a669310f0ee9555e6/django-autoslug-1.3.6.tar.gz" } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "388d255391c565ae9029dac095ecd2ad", "sha256": "64e862ee340eb08e4e921159eeffa1081465722212fcbb4b0c5433f8e82a0656" }, "downloads": -1, "filename": "django-autoslug-1.3.7.tar.gz", "has_sig": false, "md5_digest": "388d255391c565ae9029dac095ecd2ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8500, "upload_time": "2009-11-20T07:18:42", "url": "https://files.pythonhosted.org/packages/a3/dc/d35409519f36dc11e62cd468a6807b2db676f831ac5b1d2dc1dc512c7bb5/django-autoslug-1.3.7.tar.gz" } ], "1.3.8": [ { "comment_text": "", "digests": { "md5": "7eb65613b8e08b44cec9bbd17f3f501d", "sha256": "f07cb486fa465cd8517a8241a6ea6126e4871f41b1f53a5cce1bd2bc88e32a42" }, "downloads": -1, "filename": "django-autoslug-1.3.8.tar.gz", "has_sig": false, "md5_digest": "7eb65613b8e08b44cec9bbd17f3f501d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8655, "upload_time": "2009-12-05T09:40:21", "url": "https://files.pythonhosted.org/packages/71/34/52edd723cd59d4f8f38f0e6b6a8db0f15477c9c3b6b19e7989e8a1b8a366/django-autoslug-1.3.8.tar.gz" } ], "1.3.9": [ { "comment_text": "", "digests": { "md5": "5ff5184c4cd7d1ebae0a1c2c23458dea", "sha256": "587cb9706c6ca32a8a9f0e06e6c956afc3dbe008dcb237492f1ada46eac46c1d" }, "downloads": -1, "filename": "django-autoslug-1.3.9.tar.gz", "has_sig": false, "md5_digest": "5ff5184c4cd7d1ebae0a1c2c23458dea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8662, "upload_time": "2010-02-25T17:37:51", "url": "https://files.pythonhosted.org/packages/d0/ed/d30764e3fb8ee6de8bcee239d925e00f622e287efaf46af2900490922727/django-autoslug-1.3.9.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "61b1b8f855559ea31e6a9db20f0d7185", "sha256": "a0683c4829fa3e9b9be8bd6dfeb1e0f543454fa7f52c2efacae8d28c8fbca350" }, "downloads": -1, "filename": "django-autoslug-1.4.0.tar.gz", "has_sig": false, "md5_digest": "61b1b8f855559ea31e6a9db20f0d7185", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8750, "upload_time": "2010-03-14T08:25:19", "url": "https://files.pythonhosted.org/packages/bc/ee/e6d57e9d41390c180080e43e9c07de268206c4250f2ca7e32286f6bcdbb5/django-autoslug-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "9b19f6fd84c2c63fa84287e632851da1", "sha256": "8f84d012c550de481dc2ec2000400ba40ac5a74086ec4fd5a39f6569bb7d65ff" }, "downloads": -1, "filename": "django-autoslug-1.4.1.tar.gz", "has_sig": false, "md5_digest": "9b19f6fd84c2c63fa84287e632851da1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8885, "upload_time": "2010-03-15T12:49:07", "url": "https://files.pythonhosted.org/packages/3d/f3/97277fb5c8585df3b1b39876c7fddb86fda92f31818634495ec9867bd5ee/django-autoslug-1.4.1.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "afc783965ec2e7c0bac7a4ab2a4864b4", "sha256": "25ab05ab02cf68a64f5347195ccfcd5b85bbccec7ccad122e09b618e7959f8be" }, "downloads": -1, "filename": "django-autoslug-1.5.0.tar.gz", "has_sig": false, "md5_digest": "afc783965ec2e7c0bac7a4ab2a4864b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9206, "upload_time": "2011-12-18T04:22:35", "url": "https://files.pythonhosted.org/packages/a9/c7/b960475d896e325260ba1ff6097195420def28fcfff9ae44d28de623c1f6/django-autoslug-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "2457dc89460a4af27305087f1d44f6b6", "sha256": "8fb028d80879598bbcd629e9f4c1c01c8c76caf2d8e6f9b1d02d7e50372b82a6" }, "downloads": -1, "filename": "django-autoslug-1.6.0.tar.gz", "has_sig": false, "md5_digest": "2457dc89460a4af27305087f1d44f6b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9850, "upload_time": "2012-09-17T01:56:07", "url": "https://files.pythonhosted.org/packages/36/58/75ef6ece84e2e71cb3fa4705415792bcb8ef11e530107f80442b27aba3fa/django-autoslug-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "6ad1c31abb8697e5bf7a368e7f0c5176", "sha256": "092a61291b76eefb0417fc40bafd0711db90489b5139aaa6a1eb52793f17ee18" }, "downloads": -1, "filename": "django-autoslug-1.6.1.tar.gz", "has_sig": false, "md5_digest": "6ad1c31abb8697e5bf7a368e7f0c5176", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9860, "upload_time": "2012-09-29T16:34:19", "url": "https://files.pythonhosted.org/packages/e1/cd/94db86d9a079eb666d4f8274d2a7dfaa3581b6b5650bfe0ef24a4dca9515/django-autoslug-1.6.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "b386c3e653f138619d98c8d22fb156e0", "sha256": "3e8511f08ac3ced1d06becbe5bca6aa6600877af8d9796abbd0471367eab49bd" }, "downloads": -1, "filename": "django-autoslug-1.7.0.tar.gz", "has_sig": false, "md5_digest": "b386c3e653f138619d98c8d22fb156e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10083, "upload_time": "2013-07-01T14:39:10", "url": "https://files.pythonhosted.org/packages/dd/89/c1571075fdc25de3043c9433ba2ba4728dd15b578ed87a1636cdd13cd8eb/django-autoslug-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "c6a0c0c73051ffbda204f1a03ccd2c8a", "sha256": "7ce80c986ef1cda5daa71b382b5d8e82398f7975592cf767b5a89e08c1dc1546" }, "downloads": -1, "filename": "django-autoslug-1.7.1.tar.gz", "has_sig": false, "md5_digest": "c6a0c0c73051ffbda204f1a03ccd2c8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10108, "upload_time": "2013-07-05T11:27:42", "url": "https://files.pythonhosted.org/packages/b7/e1/f617345691d8dc048c18a54c7a2995c9976ff1b18a5515e4fd8dfc510ade/django-autoslug-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "2aeec8bd3d2c443c0dea6e123dcfd686", "sha256": "0df24a0d8516306be8c493c2e6287dbbedd3a0bcd68a81fcff04b13f8aef6d54" }, "downloads": -1, "filename": "django-autoslug-1.7.2.tar.gz", "has_sig": false, "md5_digest": "2aeec8bd3d2c443c0dea6e123dcfd686", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10071, "upload_time": "2014-01-06T05:10:33", "url": "https://files.pythonhosted.org/packages/61/96/a285782e7abf98276ee0f04f45ad33bbdf62ef86691538d55a93fcd8e675/django-autoslug-1.7.2.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "3d36c286f881481e07a32b2d5bf0f6f7", "sha256": "0d728005f8854be63c3572bfa996b84bff6ee9f4eb4962c84b83f3379baecdbe" }, "downloads": -1, "filename": "django-autoslug-1.8.0.tar.gz", "has_sig": false, "md5_digest": "3d36c286f881481e07a32b2d5bf0f6f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10871, "upload_time": "2015-05-17T23:01:53", "url": "https://files.pythonhosted.org/packages/1d/42/dc9a679b505c439302e84290365c24fe150b6947b55626b79040a6dbfe19/django-autoslug-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "dce1b57d410a7d312efb573569d2fcc0", "sha256": "0fd1aee34d82d13402fc6b2f97b9d65b1f29a809ae3c9854a7f0bec49523fafe" }, "downloads": -1, "filename": "django-autoslug-1.9.0.tar.gz", "has_sig": false, "md5_digest": "dce1b57d410a7d312efb573569d2fcc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9693, "upload_time": "2015-10-11T18:33:20", "url": "https://files.pythonhosted.org/packages/98/d7/72636ab5cc475b7594f861fa299715c28404a1dafb17c74fa93d71f53293/django-autoslug-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "8c45867310882e2bafdd263a9000cbf8", "sha256": "2dcb37258d694f239458cf8d2a4ed0915d03c980864400b14aa11666c9d3998e" }, "downloads": -1, "filename": "django-autoslug-1.9.1.tar.gz", "has_sig": false, "md5_digest": "8c45867310882e2bafdd263a9000cbf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9711, "upload_time": "2015-10-12T20:09:14", "url": "https://files.pythonhosted.org/packages/e8/35/9936b6c59438ecddbdf39b5e575faf2f11df74c432ddbc9b3af9b6d1ea9f/django-autoslug-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "02e9e04524a66f98b8a12e64f7408d34", "sha256": "e4329027c2b0d665d583e6dce012bcde5c9fedf1004b21ffbe245f70b4ec8c73" }, "downloads": -1, "filename": "django_autoslug-1.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "02e9e04524a66f98b8a12e64f7408d34", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 14004, "upload_time": "2015-10-12T20:54:36", "url": "https://files.pythonhosted.org/packages/cf/30/430d2d0a8fda731578d416437ecd823bcf57ada22246fb14129fd174462b/django_autoslug-1.9.2-py3-none-any.whl" } ], "1.9.3": [ { "comment_text": "", "digests": { "md5": "25ddd340838511ef674cc2134b91a617", "sha256": "d466a68e87d076f0d0d6ffe51ff70fa22ae4ca2f7717d769feb6265ef68c50f8" }, "downloads": -1, "filename": "django_autoslug-1.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25ddd340838511ef674cc2134b91a617", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14096, "upload_time": "2015-10-13T22:57:06", "url": "https://files.pythonhosted.org/packages/f2/08/1bd205d478ac2b7952bfd4eeec0a38468d068b1473fc9c17b1008e80c729/django_autoslug-1.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d91e4f04869a282398ca6efc623f2b34", "sha256": "790efc84246ad8b7106d94e79bff8eb14b94616e8765235784483832899bb40a" }, "downloads": -1, "filename": "django-autoslug-1.9.3.tar.gz", "has_sig": false, "md5_digest": "d91e4f04869a282398ca6efc623f2b34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18732, "upload_time": "2015-10-13T22:57:31", "url": "https://files.pythonhosted.org/packages/cb/ff/5dc53b4273cf80e294904ee7156c7d2b759e690a90913d929ed7508b1b90/django-autoslug-1.9.3.tar.gz" } ], "1.9.3.dev0": [ { "comment_text": "", "digests": { "md5": "cbd8453483090cd2cbec0374d195d818", "sha256": "3ecbbc59a591fa1e35b2066c6867d85a069cc28aa76a0dcf3157826aac005ad0" }, "downloads": -1, "filename": "django_autoslug-1.9.3.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cbd8453483090cd2cbec0374d195d818", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 14169, "upload_time": "2015-10-13T17:47:34", "url": "https://files.pythonhosted.org/packages/5c/ce/14660ff749be8086fff41b25208acca68df0f566f84419b5188c8094e609/django_autoslug-1.9.3.dev0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8592dde18a9b8eb5c272f0093c53866", "sha256": "aef90a83c145d32007e3c00c00fdc8a24f7dcd5a61aa2104014c4ecd364c1185" }, "downloads": -1, "filename": "django-autoslug-1.9.3.dev0.tar.gz", "has_sig": false, "md5_digest": "f8592dde18a9b8eb5c272f0093c53866", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18697, "upload_time": "2015-10-13T17:58:29", "url": "https://files.pythonhosted.org/packages/1a/cf/254ed56428c14eecf45fef4a93ff8c97f13c1838f5cda704a99e74cb3426/django-autoslug-1.9.3.dev0.tar.gz" } ], "1.9.4": [ { "comment_text": "", "digests": { "md5": "794cac7b48003e05603b14b72862466a", "sha256": "08ba143ce5914d2689972c0adaea56abc37fb7175e9f6939fe0e3ac26374e7a0" }, "downloads": -1, "filename": "django_autoslug-1.9.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "794cac7b48003e05603b14b72862466a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15273, "upload_time": "2019-02-02T13:35:31", "url": "https://files.pythonhosted.org/packages/4c/aa/980fa76a4c63c6d1a4faf54cf66e13734634d5e7b24e23d15014be8fccbf/django_autoslug-1.9.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72a49b8237e6f7b2b847ec221b889771", "sha256": "aece8613eb173854462c656e91d81aa7ddfacaa49fb500d549f2143d1ce48721" }, "downloads": -1, "filename": "django-autoslug-1.9.4.tar.gz", "has_sig": false, "md5_digest": "72a49b8237e6f7b2b847ec221b889771", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20948, "upload_time": "2019-02-02T13:35:33", "url": "https://files.pythonhosted.org/packages/58/21/5c6a394a92ae580ec01cd9a50abf7bf817be84759cbd8bd0e6792ae31054/django-autoslug-1.9.4.tar.gz" } ], "1.9.5": [ { "comment_text": "", "digests": { "md5": "23ca1479d916d8cb84b03df22d54c2ac", "sha256": "3ed4fdf9bf809f18d5a922164b8a33d80b035b2d9845550bd07a34a2c019603d" }, "downloads": -1, "filename": "django_autoslug-1.9.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "23ca1479d916d8cb84b03df22d54c2ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14578, "upload_time": "2019-07-28T16:28:09", "url": "https://files.pythonhosted.org/packages/90/f0/bbb434ba406bf28f8d4625d2d54e7b4c2329946a495cd3bdb02a3dd77ed2/django_autoslug-1.9.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "646ca9210ad1556105f8b929a2ae8e4c", "sha256": "83dde7f41fd95066ba88d224a09096ac2fe955b56351828947c05b473ca88f1d" }, "downloads": -1, "filename": "django-autoslug-1.9.5.tar.gz", "has_sig": false, "md5_digest": "646ca9210ad1556105f8b929a2ae8e4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24241, "upload_time": "2019-07-28T16:28:13", "url": "https://files.pythonhosted.org/packages/6b/66/e0869410fb836feed035185024060e52643b7160e0002677aa99fa465f87/django-autoslug-1.9.5.tar.gz" } ], "1.9.6": [ { "comment_text": "", "digests": { "md5": "5890abc41c6f2acf875cf44538aa7a20", "sha256": "3c55c18e2a5aab67c3a8d488056422b93c1984a197387c97952e92836f98c73c" }, "downloads": -1, "filename": "django_autoslug-1.9.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5890abc41c6f2acf875cf44538aa7a20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14634, "upload_time": "2019-07-30T14:58:26", "url": "https://files.pythonhosted.org/packages/58/4b/4f8d4afea392ecf4563c51929732ce722c60636b79b4ee4cd9db890a323a/django_autoslug-1.9.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5b66460edeb2cf5d7d53b618417ec49", "sha256": "f9d2ef0d98dd97ba4d5ea358cc74bfee3e3498e2dee29f396d604173eaf07e47" }, "downloads": -1, "filename": "django-autoslug-1.9.6.tar.gz", "has_sig": false, "md5_digest": "b5b66460edeb2cf5d7d53b618417ec49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24473, "upload_time": "2019-07-30T14:58:28", "url": "https://files.pythonhosted.org/packages/bb/c0/9db97a5cb7b0187957b0ef0f58b2541f453cbe807c4d68b9ca944202fab0/django-autoslug-1.9.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5890abc41c6f2acf875cf44538aa7a20", "sha256": "3c55c18e2a5aab67c3a8d488056422b93c1984a197387c97952e92836f98c73c" }, "downloads": -1, "filename": "django_autoslug-1.9.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5890abc41c6f2acf875cf44538aa7a20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14634, "upload_time": "2019-07-30T14:58:26", "url": "https://files.pythonhosted.org/packages/58/4b/4f8d4afea392ecf4563c51929732ce722c60636b79b4ee4cd9db890a323a/django_autoslug-1.9.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5b66460edeb2cf5d7d53b618417ec49", "sha256": "f9d2ef0d98dd97ba4d5ea358cc74bfee3e3498e2dee29f396d604173eaf07e47" }, "downloads": -1, "filename": "django-autoslug-1.9.6.tar.gz", "has_sig": false, "md5_digest": "b5b66460edeb2cf5d7d53b618417ec49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24473, "upload_time": "2019-07-30T14:58:28", "url": "https://files.pythonhosted.org/packages/bb/c0/9db97a5cb7b0187957b0ef0f58b2541f453cbe807c4d68b9ca944202fab0/django-autoslug-1.9.6.tar.gz" } ] }