An automated slug field for Django.
Project description
django-autoslugged
DEPRECATION NOTICE
Since the maintenance and development of the original project have resumed, this fork will not be maintained anymore. Please switch to https://github.com/justinmayer/django-autoslug
Django-autoslugged is a reusable Django library that provides an improved slug field which can automatically:
populate itself from another field,
preserve uniqueness of the value and
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-autoslugged-2.0.0.post0.tar.gz
.
File metadata
- Download URL: django-autoslugged-2.0.0.post0.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ce62c40d8143c948434a0f49f6493d18a841f84f892fa51117255cb05ea452f |
|
MD5 | d75199f1934953923586aac22fc7cb06 |
|
BLAKE2b-256 | d2b8f795b2267a1f14e4b79661dba683521b42974e2ec84bca64d2e821510a06 |
File details
Details for the file django_autoslugged-2.0.0.post0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_autoslugged-2.0.0.post0-py2.py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c737fed72caee491e2875c2a3fa31ce47bb8b1567138cd3c39dec78594edc558 |
|
MD5 | fb6ae927f7aae04d97fd5e52ffbb83dc |
|
BLAKE2b-256 | 7e71d949e8f25aa0062edb35285e6934342a97fac6d3aa80541cf4e071294891 |