Metadata-Version: 2.0
Name: zinnia-url-shortener-hashids
Version: 1.1
Summary: Hashids URL shortener backend for django-blog-zinnia
Home-page: https://github.com/Fantomas42/zinnia-url-shortener-hashids
Author: Fantomas42
Author-email: fantomas42@gmail.com
License: BSD License
Keywords: django,zinnia,url,hashids
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: hashids

=============================
Zinnia-url-shorterner-hashids
=============================

Zinnia-url-shortener-hashids is a package providing URL shortening within
`django-blog-zinnia`_ with non-sequential, short and unique ids.

Installation
============

* Install the package on your system: ::

  $ pip install zinnia-url-shortener-hashids

  `hashids`_ will also be installed as a dependency.

* Put this setting to enable the URL shortener backend:

  ``ZINNIA_URL_SHORTENER_BACKEND = 'zinnia_hashids'``

* Then include this URLconf into your project: ::

    url(r'^', include('zinnia_hashids.urls')),

.. _django-blog-zinnia: http://django-blog-zinnia.com
.. _hashids: https://github.com/davidaurelio/hashids-python


