Django field that combines multiple fields into a unique identifier with collision handling
Project description
django-namedid
Django field that automatically combines multiple fields into a unique identifier with collision handling.
Purpose
Create unique identifiers by combining multiple model fields (e.g., name, id, date) with automatic collision resolution.
Installation
pip install django-namedid
Quick Start
Using NamedIDField directly
from django.db import models
from namedid import NamedIDField
from datetime import date
class Product(models.Model):
name = models.CharField(max_length=100)
code = models.IntegerField()
created_date = models.DateField()
named_id = NamedIDField(
source_fields=["name", "code", "created_date"],
max_length=200,
)
Using the decorator
from django.db import models
from namedid import add_namedid
@add_namedid(named_id=["title", "id"], slug=["title", "category"])
class Article(models.Model):
title = models.CharField(max_length=200)
category = models.CharField(max_length=50)
content = models.TextField()
Features
- Automatic generation: Values are generated automatically before saving
- Collision handling: Automatically appends numeric suffix if value exists (e.g.,
name-1-2023,name-1-2023-1,name-1-2023-2) - Type formatting: Automatically formats dates, numbers, booleans
- Unique and required: Fields are always unique and cannot be empty
- Read-only: Fields are automatically set to read-only
Field Properties
unique=True: Always uniqueeditable=False: Always read-onlyblank=False: Cannot be emptynull=False: Cannot be NULL
Development
./service.py dev install-dev
./service.py dev test
License
MIT
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_namedid-0.2.0.tar.gz.
File metadata
- Download URL: django_namedid-0.2.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b8cf0b028802e543299149fc69d35e33f11e40e584f105c3ffc30955c646d2f
|
|
| MD5 |
a03cd200e8cd863a3822ffbb6e4f5eb7
|
|
| BLAKE2b-256 |
9ce70c3d9e01d7058d7d46de2caa225a72e03852f296e34cf1a37b9588e67277
|
File details
Details for the file django_namedid-0.2.0-py3-none-any.whl.
File metadata
- Download URL: django_namedid-0.2.0-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd446866bd451e7126e4c7a0ad47495fd7ae48fb04a5f9959c119c5cfa8b7a8b
|
|
| MD5 |
0d2de9e8fe8d808079eeeb45e66111d1
|
|
| BLAKE2b-256 |
aea9aa568246c263985f2a4a99340737e8ded09247a9a9dc40324bca5360efc6
|