Skip to main content

Short-form UUID field for Django 1.8 and above

Project description

https://img.shields.io/pypi/v/django-smalluuid.svg https://img.shields.io/pypi/dm/django-smalluuid.svg https://img.shields.io/github/license/adamcharnock/django-smalluuid.svg https://img.shields.io/travis/adamcharnock/django-smalluuid.svg https://coveralls.io/repos/adamcharnock/django-smalluuid/badge.svg?branch=master

Installation

Installation using pip:

pip install django-smalluuid

Basic Usage

To get started use the SmallUUIDField field in your model definitions:

from django.db import models
from django_smalluuid.models import SmallUUIDField, uuid_default

class ExampleModel(models.Model):
    uuid = SmallUUIDField(default=uuid_default())

The field provides values as instances of SmallUUID (see smalluuid):

>>> obj = ExampleModel.objects.create()

# The initial UUID has been auto-generated by uuid_default()
>>> obj.uuid
SmallUUID('T1q_P6HcQNSyW6tpqJTxww')

# It is still available in the groupex hex form (if needed)
>>> obj.hex_grouped
'4f5abf3f-a1dc-40d4-b25b-ab69a894f1c3'

# Filtering is done on the shortened UUIDs
>>> ExampleModel.objects.filter(uuid='T1q_P6HcQNSyW6tpqJTxww')
[<ExampleModel: ExampleModel object>]

Typed Usage

django-smalluuid also supports the Typed UUID’s as provided by smalluuid. This allows for the object’s type to be stored within the UUID.

Updating the above example:

from django.db import models
from django_smalluuid.models import SmallUUIDField, uuid_typed_default

class TypedExampleModel(models.Model):
    uuid = SmallUUIDField(default=uuid_typed_default(type=42))

Which can be interacted with as follows:

>>> obj = TypedExampleModel.objects.create()
>>> obj.uuid
TypedSmallUUID('qvyk8nzbQfu8zAnTPQweyw')
>>> obj.uuid.type
42

Credits

django-smalluuid is packaged using seed and relies upon smalluuid.

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-smalluuid-0.1.1.tar.gz (6.6 kB view details)

Uploaded Source

File details

Details for the file django-smalluuid-0.1.1.tar.gz.

File metadata

File hashes

Hashes for django-smalluuid-0.1.1.tar.gz
Algorithm Hash digest
SHA256 10f366fb7d4a44cf1e868c457f70244cb19e846d8cf7eaab646e2d3b70c17976
MD5 6b549a7a551c144d47e6d10760892bd8
BLAKE2b-256 5e49197df4d7552d17e235f9e88f33c8179533b6874ad6e2dac335598f6bbacd

See more details on using hashes here.

Supported by

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