Skip to main content

A simple prefix ID Django model field, using UUID to Base62 encoding.

Project description

Overview

django-prefix-id is a simple package that contains a single Django model field, PrefixIDField. PrefixIDField is

  • based on Django's CharField
  • allows using a prefix (recommended for context)
    • enables some very interesting product usage and querying patterns
  • autogenerates a unique id by default (auto-including the prefix, if provided)
    • uses uuid.uuid4() to generate a 128-bit integer, which is then base62-encoded
  • auto-sets the max_length field property, factoring in the provided prefix length and a known max length of 22 characters for a base62-encoded 128-bit integer

Why work with IDs like 7584358 or '7fca5f1d-f867-4696-960b-e57274cc5647' when you could have something swanky like 'user_4wr7jBDTEqVBCsXEih4zfP'?

If you already like to use UUIDs as IDs, you should use django-prefix-id! If you currently use autoincrementing IDs, you should also consider using django-prefix-id, from an obfuscation point of view.

Installation

$ pip install django-prefix-id

Usage

from prefix_id import PrefixIDField

class Book(models.Model):
    id = PrefixIDField(prefix="book", primary_key=True)
    title = models.CharField(max_length=100, blank=False)
    ...

Make your migrations, as you normally would:

$ python manage.py makemigrations

Development

$ pip -m venv venv
$ source /venv/bin/activate
$ pip install -r requirements.txt

Testing

Manually run tests:

$ pytest

Test coverage is at 100%. To get test coverage output:

$ pytest --cov --cov-report html
# OR
$ pytest --cov

To cover a breadth of likely usage scenarios, tox is the tool of choice. It is set up with a matrix covering various combinations of Python versions 3.8 - 3.12 with Django 4.2 and 5.0.

See tox.ini to enable testing Django versions as far back as Django 3.2 - tests pass across the board, but for simplicity only latest LTS Django and other currently supported versions will be considered in scope.

Run the test suite against all enabled versions:

$ tox

Backstory and Inspiration

Stripe-like prefixed entity IDs have long been a topic of interest to me, and the improved user experience that they can provide. I'd gone through a couple of iterations with FastAPI and Django - and thought I might as well release something that I'm happy with sharing publicly.

About 80% through this effort, I found yunojuno's django-charid-field project, and took some further inspiration from it - so thanks to them!

(It also appears we have other project interests in common!)

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_prefix_id-1.0.1.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_prefix_id-1.0.1-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file django_prefix_id-1.0.1.tar.gz.

File metadata

  • Download URL: django_prefix_id-1.0.1.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for django_prefix_id-1.0.1.tar.gz
Algorithm Hash digest
SHA256 5d4f849851e6343436af0b754afd9b620223eaab062eca5aa7b615ddc6c8ac74
MD5 2184e861f2e077085056077627fefbe4
BLAKE2b-256 7cc928219867c52600f6992db8dd959588f303d51dbeee15e59c21ea7d02cc1b

See more details on using hashes here.

File details

Details for the file django_prefix_id-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_prefix_id-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a8fc4095912fea331b12f1199d56d726ae07e5c27c67d65969b0b3e485fa9882
MD5 cec21471a8fb7687d9ed044efc86cb8f
BLAKE2b-256 5d36415ab037f4da8b1c81240392d76196b940e9ae3eb1f3492d5525869ddf29

See more details on using hashes here.

Supported by

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