Skip to main content

Django Binary Hash Fields

Work with hexadecimal, store in binary, using half of the data size.

Installation

Just install via pip:

pip install django-binhash

And add to your apps on settings.py:

INSTALLED_APPS = [
    # Django apps
    'binhash',
    # Your apps
]

Compatibility

Environments

Tested under Python from 3.10 to 3.12, and under Django 4.x and 5.x.

Databases

At the version 0.2.0 it was only tested on SQLite, but if should work fine in all databases officially supported by Django.

Formats

  • MD5
    • MD5Field
  • SHA-1
    • SHA1Field
  • SHA-2
    • SHA224Field
    • SHA256Field
    • SHA384Field
    • SHA512Field
  • SHA-3
    • SHA3_224Field
    • SHA3_256Field
    • SHA3_384Field
    • SHA3_512Field
    • SHAKE128Field
    • SHAKE256Field
    • SHAKE512Field

Usage

Just import and set some fields:

from django.db import models
from binhash import (MD5Field, SHA1Field, SHA256Field)

class ISOFile(models.Model):
    name = models.CharField('Name', max_length=30)
    url = models.URLField('URL')
    md5sum = MD5Field('MD5 Checksum')
    sha1sum = SHA1Field('SHA-1 Checksum')
    sha256sum = SHA256Field('SHA-256 Checksum')

Than, proceed using them like CharFields:

# Create normaly as if the fields were strings:
ISOFile.objects.create(
    name='Ubuntu Server 17.04',
    md5sum='d02df11b4a7318b7250824f6d0bab9c0',
    sha1sum='bc5fb639724b5cd90eb739845f246e2c564b0dd8',
    sha256sum='632e64dde9a7da27fa96bea4d2cf78f051065c6becc0d0f728aabfc091396256',
)

# Fetch by string is also supported:
ubuntu = ISOFile.objects.get(md5sum='d02df11b4a7318b7250824f6d0bab9c0')

# Everything works as expected on the application side:
print(ubuntu.sha1sum)  # Shows bc5fb639724b5cd90eb739845f246e2c564b0dd8
print(type(ubuntu.sha1sum))  # Shows <class 'str'>

If you are feeling skeptical, check the database:

$ ./manage.py dbshell
sqlite> .header on
sqlite> .mode column
sqlite> select hex(sha1sum) hex_sha1,
   ...>        length(hex(sha1sum)) size_if_this_was_varchar,
   ...>        length(sha1sum) actual_size
   ...> from downloads_isofile;
hex_sha1                                  size_if_this_was_varchar  actual_size
----------------------------------------  ------------------------  -----------
BC5FB639724B5CD90EB739845F246E2C564B0DD8  40                        20

License

This library is released under the 3-Clause BSD License.

tl;dr: "free to use as long as you credit me".

Release files for django-binhash 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for django-binhash 0.2.0
File Size Uploaded
django_binhash-0.2.0.tar.gz 7.5 kB Details

Release files / django_binhash-0.2.0.tar.gz

Download URL django_binhash-0.2.0.tar.gz
Size 7.5 kB
Tags Source
SHA-256 checksum
How to use checksums
08fb43dc4d34ce8b944181639db64b05d1c4b17380df83281ad49571509e1649
BLAKE2b-256 checksum
How to use checksums
ee96ff637ff6b4a8a20a4d66eaa9ee1f931cd5e949ad6a15c89eabc03f04193b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.0

Release history Release notifications | RSS feed

This release

0.2.0 This release

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page