Skip to main content

An easy to use postgres hstore field that is based on django-hstore-widget

Project description

django-hstore-field

PyPI Downloads CI Pypi Badge pre-commit.ci status

An easy to use postgres hstore field that is based on django-hstore-widget

Requirements

  • Python 3.10 and Up ( well technically any python version from 3.6 should work )
  • Django 3.2 and Up
  • Modern browsers ( Chrome 112+, Firefox 117+, Safari 16.5+ or any browsers supporting css nesting )

Installation

pip install django-hstore-field

Usage

Option 1:

Include django-hstore-widget in your settings.py's INSTALLED_APPS:

# settings.py

INSTALLED_APPS = [
    ...,
    'django_hstore_widget',
    ...
]

Option 2:

Include django-hstore-widget's migration to any of your model's migration:

# Generated migration file
from django.db import migrations, models
import django.contrib.postgres.fields


class Migration(migrations.Migration):
    dependencies = [
        ("django_hstore_widget", "__latest__"),
    ]

    operations = [
        ...
    ]

and then use it:

# yourapp/models.py
from django.db import models
from django_hstore_field import HStoreField


class ExampleModel(models.Model):
    data = HStoreField()

Indexing

You should use GIN indexing for 99% of the use case, create an index like this:

# models.py
from django.db import models
from django.contrib.postgres.indexes import GinIndex
from django_hstore_field import HStoreField


class ExampleModel(models.Model):
    data = HStoreField()

    class Meta:
        indexes = [
            GinIndex(fields=["data"], name="example_data_gin"),
        ]

Example:

Check the cat directory

[!NOTE]
If you want a lower level implementation, please check django-hstore-widget.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_hstore_field-0.0.6.tar.gz (2.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_hstore_field-0.0.6-py3-none-any.whl (2.8 kB view details)

Uploaded Python 3

File details

Details for the file django_hstore_field-0.0.6.tar.gz.

File metadata

  • Download URL: django_hstore_field-0.0.6.tar.gz
  • Upload date:
  • Size: 2.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for django_hstore_field-0.0.6.tar.gz
Algorithm Hash digest
SHA256 7ce22f3a801465acdae9163dfad9d1cd459ce30804d2e641bc046df484c122a0
MD5 e6aeea11cba33d922179764722d38fbc
BLAKE2b-256 94b23abf80da08087f17ce826f31f77de5b2e374bebf9b0508813b8fae890246

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_hstore_field-0.0.6.tar.gz:

Publisher: CI.yaml on baseplate-admin/django-hstore-field

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_hstore_field-0.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for django_hstore_field-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 afe8aa2dc7fcb3c5c9f7940d1f028a3605b135ceb515efdba283c6e9b8b97d3c
MD5 070843b660b0370c051289391dcf6dab
BLAKE2b-256 92d99b72732b1ead4d4a6976cdca403a03d52f357b30f8591e91d435b67e5360

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_hstore_field-0.0.6-py3-none-any.whl:

Publisher: CI.yaml on baseplate-admin/django-hstore-field

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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