Skip to main content

Additional field from django taking it's value from a postgresql sequence. It is similar to django AutoField, except that multiple model can share ids from a single sequence. Also add the possibility to generate an id from a sequence AND from the data of another field in the model

Project description

sequencefield

simple model field taking it's value from a postgres sequence. This is an easy replacement for django autofield offering the following advantages:

  • Sequence could be shared among multiple models (db tables), so you can now have unique id among multiple django models
  • Unique Id could also be combined with data from other field to build complex id. One example is given that combine unique id with date information to offer an efficient table indexing/clustering for faster data retrieval when filtering on date. (Particularly useful with BRIN index)

Installation

  • Run pip install sequencefield
  • Use a (Small/Big)IntegerSequenceField in one of your model
  • Add a SequenceConstraint into the same model to name the sequence field to use and which id should take values from this sequence constraint

Usage

Settings

This package doesn't need any setting.

Simple Example

Just add a sequence field(s) to your models like this:

from django.db import models
from sequencefield.constraints import IntSequenceConstraint
from sequencefield.fields import IntegerSequenceField


class IntSequenceModel(models.Model):
    id = IntegerSequenceField(primary_key=True) #primary_key=False works too

    class Meta:
        constraints = [
            IntSequenceConstraint(
                name="%(app_label)s_%(class)s_custseq",
                sequence="int_custseq", #name of sequence to use
                fields=["id"], #name of the field that should be populated by this sequence
                start=100, #first value of the sequence
                maxvalue=200 #max value allowed for the sequence, will raise error if we go above, use None for the maximum allowed value of the db
            )
        ]

Advance Example

Just add a sequence field(s) to your models like this:

from django.db import models
from sequencefield.constraints import BigIntSequenceConstraint
from sequencefield.fields import BigIntegerWithDateSequenceField


class BigIntSequenceModel(models.Model):
    id = models.BigIntegerField(primary_key=True, auto_created=False)
    created = models.DateTimeField(editable=False)
    seqid = BigIntegerWithDateSequenceField(datetime_field="created") #this field with combine values from the sequence with date timestamp
    # the 2 first bytes of the bigint will contains the number of days since 1/1/1970
    # the 6 following bytes will contains a unique id coming from the sequence

    class Meta:
        constraints = [
            BigIntSequenceConstraint(
                name="%(app_label)s_%(class)s_custseq",
                sequence="gdw_post_custseq", #name of the quence
                fields=["seqid"], #field to be populated from this sequence
                start=1, #first value of the sequence
            )
        ]

Testing

# clone repository
git clone https://github.com/quertenmont/django-sequencefield.git && cd sequencefield

# create virtualenv and activate it
python -m venv venv && . venv/bin/activate

# upgrade pip
python -m pip install --upgrade pip

# install requirements
pip install -r requirements.txt -r requirements-test.txt

# install pre-commit to run formatters and linters
pre-commit install --install-hooks

# run tests
tox
# or
python runtests.py
# or
python -m django test --settings "tests.settings"

License

Released under MIT License.


Supporting

  • :star: Star this project on GitHub
  • :octocat: Follow me on GitHub
  • :blue_heart: Follow me on Twitter
  • :moneybag: Sponsor me on Github

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_sequencefield-1.0.6.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

django_sequencefield-1.0.6-py3-none-any.whl (8.6 kB view details)

Uploaded Python 3

File details

Details for the file django_sequencefield-1.0.6.tar.gz.

File metadata

  • Download URL: django_sequencefield-1.0.6.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for django_sequencefield-1.0.6.tar.gz
Algorithm Hash digest
SHA256 68c450074bf902cf54ebd4145675cadc99d351b2ed890d984a5bee4c30f8c381
MD5 0702f6b7befd9fdd12b1ac2a8a64aae5
BLAKE2b-256 167c0683d17f6e52e2a509a5cb04a2a48bbdbeee65aca2373f2b9b63153ea613

See more details on using hashes here.

File details

Details for the file django_sequencefield-1.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for django_sequencefield-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 e71a722b8c7257424b6391bb754acbe5afded3cf46575c43115a4de8c35b64db
MD5 00b1b419963f378f4548f4a3a4f7567a
BLAKE2b-256 ccabdce150545b8dc900d3c037125fe93364b212b1aab53d08afa106f9508ecf

See more details on using hashes here.

Supported by

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