Skip to main content

An automated slug field for Django.

Project description

django-autoslugged

Python Django PyPI image Build Status Coverage Status

Docs stable Docs latest

Django-autoslugged is a reusable Django library 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.

The field is highly configurable.

Requirements

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

note

PyPy3 is not officially supported only because there were some problems with permissions and __pycache__ on CI unrelated to django-autoslugged itself.

Examples

A simple example:

from django.db.models import CharField, Model
from autoslugged 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 autoslugged 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 the complete documentation on ReadTheDocs. It is built automatically for the latest version.

Community

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

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

See CONTRIBUTING.rst for hints related to the preferred workflow.

Since the original project (django-autoslug) was not maintained anymore but I was using it in several projects, I forked it and renamed it in order to publish a new release on PyPI.

Licensing

Django-autoslugged 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-autoslugged 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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-autoslugged-2.0.0.dev0.tar.gz (21.7 kB view details)

Uploaded Source

Built Distribution

django_autoslugged-2.0.0.dev0-py2.py3-none-any.whl (15.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-autoslugged-2.0.0.dev0.tar.gz.

File metadata

File hashes

Hashes for django-autoslugged-2.0.0.dev0.tar.gz
Algorithm Hash digest
SHA256 f0159113b593bd557f6de119d0ee12adc775b903a9f4b0e6602c51b392e82c3b
MD5 a8b6c85ed7bde30ff73705a01a56ce32
BLAKE2b-256 36f8a7482fe5983599c4d525e91bbc029b63f8c70de8d9334fc7e0d2afc6fd32

See more details on using hashes here.

File details

Details for the file django_autoslugged-2.0.0.dev0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_autoslugged-2.0.0.dev0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 86a23cdba76cb2fee0cbf06cb7eeef6cab20295722b4eab52164cb279dc05c2e
MD5 31fb3fc8084257113e359c0e45fa1d61
BLAKE2b-256 c82a2ada2128f8796f8dfe567c30b6f08d7469ac17feec263156b01bd8ac4f3d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page