Metadata-Version: 2.4
Name: superslug
Version: 1.0.2
Summary: Slugify strings to URL slugs
Home-page: https://bitbucket.org/ollyc/superslug
Author: Oliver Cope
Author-email: oliver@redgecko.org
License: Apache
Keywords: slugify slug
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Topic :: Text Processing
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
License-File: LICENSE.txt
Dynamic: license-file

Superslug - make URL slugs from arbitrary strings
==================================================


Superslug elegantly handles punctuation, unicode characters, apostrophes,
and stop words to produce url friendly slugs.

Example:

.. code:: python

    from superslug import slugify

    # Will return 'one-two-threeeee'
    slug = slugify('one! - two! thréééee!')
