Skip to main content

Non-intrusive sqids library for Django

Project description

Django Sqids

Github Actions Python Version PyPI Package License

django-sqids is a simple and non-intrusive sqids library for Django. It acts as a model field, but it does not touch the database or change the model.

The project was forked from django-hashids to provide the same functionality with the newer Sqids library.

Features

  • Proxy the internal model pk field without storing the value in the database.
  • Allows lookups and filtering by sqid string.
  • Can be used as sort key.
  • Allows specifying a min_length and alphabet globally.
  • Supports custom min_length, prefix, and alphabet per field.
  • Supports Django REST Framework Serializers.
  • Supports exact ID searches in Django Admin when field is specified in search_fields.
  • Supports other lookups: in, isnull, gt, gte, lt, and lte.

Install

pip install django-sqids

django-sqids is tested with Django 3.2, 4.2, 5.0 and Python 3.8 - 3.12.

Usage

Add SqidsField to any model

from django_sqids import SqidsField

class TestModel(Model):
    sqid = SqidsField(real_field_name="id")

TestModel.sqid field will proxy TestModel.id field but all queries will return and receive sqids strings. TestModel.id will work as before.

Examples

instance = TestModel.objects.create()
instance2 = TestModel.objects.create()
instance.id  # 1
instance2.id  # 2

# Allows access to the field
instance.sqid  # '1Z'
instance2.sqid  # '4x'

# Allows querying by the field
TestModel.objects.get(sqid="1Z")
TestModel.objects.filter(sqid="1Z")
TestModel.objects.filter(sqid__in=["1Z", "4x"])
TestModel.objects.filter(sqid__gt="1Z")  # same as id__gt=1, would return instance 2

# Allows usage in queryset.values
TestModel.objects.values_list("sqid", flat=True) # ["1Z", "4x"]
TestModel.objects.filter(sqid__in=TestModel.objects.values("sqid"))

Using with URLs

You can use sqids to identify items in your URLs by treating them as slugs.

In urls.py:

urlpatterns = [
    path("item/<slug>/", YourDetailView.as_view(), name="item-detail"),
]

And in your view:

class YourDetailView(DetailView):
    model = Item
    slug_field = 'sqid'

Using with Django Admin

Add the field to your ModelAdmin's search_fields to quickly find a record by its Sqid:

class MyModelAdmin(admin.ModelAdmin):
    search_fields = [
        "sqid__exact",
    ]

Config

The following attributes can be added in settings file to set default arguments of SqidsField:

  1. DJANGO_SQIDS_MIN_LENGTH: default minimum length
  2. DJANGO_SQIDS_ALPHABET: default alphabet

SqidsField does not require any arguments but the following arguments can be supplied to modify its behavior.

Name Description Example
real_field_name The proxied field name sqid = SqidsField(real_field_name="id")
sqids_instance The sqids instance used to encode/decode for this field sqid = SqidsField(sqids_instance=sqids_instance)
min_length The minimum length of sqids generated for this field sqid = SqidsField(min_length=10)
alphabet The alphabet used by this field to generate sqids sqid = SqidsField(alphabet="KHE5J3L2M4N6P7Q8R9T0V1W2X3Y4Z")
prefix The prefix used by this field to generate sqids sqid = SqidsField(prefix="item-")

The argument sqids_instance is mutually exclusive to min_length and alphabet. See sqids-python for more info about the arguments.

Some common Model arguments such as verbose_name are also supported.

Where did the Salt go?

When the Hashids project transitioned to Sqids, Sqids removed the "salt" parameter to prevent the appearance that it provides security or safety. In Sqids, the order of the alphabet affects the generated sqids. django_sqids provides a useful shuffle_alphabet function that helps reintroduce the same idea as the "salt" parameter by shuffling the alphabet. This can be used to generate a unique alphabet for each instance of SqidsField to prevent the same id from generating the same sqid across different instances of SqidsField.

The seed parameter is used to generate a unique ordering of alphabet for each instance of SqidsField. The alphabet parameter can be used to specify a custom alphabet.

from django_sqids import SqidsField, shuffle_alphabet

class MyModel(models.Model):
    # will use your configured default alphabet
    sqid = SqidsField(alphabet=shuffle_alphabet(seed='randomSeed'))

class HexModel(models.Model):
    sqid = SqidsField(alphabet=shuffle_alphabet(seed='randomSeed', alphabet='0123456789abcdef'))

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_sqids-0.2.2.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

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

django_sqids-0.2.2-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file django_sqids-0.2.2.tar.gz.

File metadata

  • Download URL: django_sqids-0.2.2.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.11.5 Linux/6.6.87.2-microsoft-standard-WSL2

File hashes

Hashes for django_sqids-0.2.2.tar.gz
Algorithm Hash digest
SHA256 853af6efef57644867f2e46fc1f01e814fb7c9b297163f143724a280dca738dd
MD5 aab88d45461276293a673436a9710acb
BLAKE2b-256 cd86f0be1a2882fc55839b61245101a32a6a6600a925e4ea3821d446bbeb9a53

See more details on using hashes here.

File details

Details for the file django_sqids-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: django_sqids-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 6.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.11.5 Linux/6.6.87.2-microsoft-standard-WSL2

File hashes

Hashes for django_sqids-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ddec508a29e9b51474e3ef78a148d906151b4863e830f59d3f13fadf94e90a79
MD5 da9f95d6f627d037d7df9a3b3e2df310
BLAKE2b-256 d4c93520ed5bad42f45c8ce5b7c31a7a87666cf05346fc53d825826fd86caf8d

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