Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install django-autoslug

How to install django-autoslug

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install django-autoslug
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
1.7.1 Available View build log
1.6.1 Available View build log
1.5.0 Available View build log
1.4.1 Available View build log
Windows (64-bit)
1.7.1 Available View build log
1.6.1 Available View build log
1.5.0 Available View build log
1.4.1 Available View build log
Mac OS X (10.5+)
1.7.1 Available View build log
1.6.1 Available View build log
1.5.0 Available View build log
1.4.1 Available View build log
Linux (32-bit)
1.7.1 Available View build log
1.6.1 Available View build log
1.5.0 Available View build log
1.4.1 Available View build log
Linux (64-bit)
1.7.1 Available View build log
1.6.1 Available View build log
1.5.0 Available View build log
1.4.1 Available View build log
1.7.1 Available View build log
 
License
GNU Lesser General Public License (LGPL), Version
Dependencies
Imports
Lastest release
version 1.7.1 on Jul 8th, 2013

Django-autoslug is a reusable Django application that provides an improved slug field which can automatically:

  1. populate itself from another field,
  2. preserve uniqueness of the value and
  3. use custom slugify() functions for better i18n.

Requirements

Obviously, a more or less recent version of Django.

The following versions of Python are officially supported: 2.5, 2.6, 2.7, 3.3, PyPy.

It may be possible to successfully use django-autoslug in other environments but they are not tested.

Examples

A simple example:

from django.db.models import CharField, Model
from autoslug import AutoSlugField

class Article(Model):
    title = CharField(max_length=200)
    slug = AutoSlugField(populate_from='title')

More complex example:

from django.db.models import CharField, DateField, ForeignKey, Model
from django.contrib.auth.models import User
from autoslug import AutoSlugField

class Article(Model):
    title = CharField(max_length=200)
    pub_date = DateField(auto_now_add=True)
    author = ForeignKey(User)
    slug = AutoSlugField(populate_from=lambda instance: instance.title,
                         unique_with=['author__name', 'pub_date__month'],
                         slugify=lambda value: value.replace(' ','-'))

Documentation

See complete HTML documentation for details. Sometimes it may get slightly outdated. You can always have the latest snapsnot by building it from the source (using Sphinx).

Community

This application was initially created by Andy Mikhailenko and then improved by other developers. They are listed in AUTHORS.

Please feel free to file issues and/or submit patches.

See CONTRIBUTING for hints related to the preferred workflow.

Licensing

Django-autoslug is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

Django-autoslug is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this program; see the file COPYING.LESSER. If not, see GNU licenses.

Subscribe to package updates

Last updated Jul 8th, 2013

Download Stats

Last month:14

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.