Django HStore Project

A monorepo for the Django HStore ecosystem, human-friendly PostgreSQL hstore support for Django admin.

Packages

django-hstore-widget

Custom widget for editing hstore data in Django admin. Built with Lit and TypeScript for a responsive key-value editor.

pip install django-hstore-widget
https://pypi.org/project/django-hstore-widget/
django-hstore-field

Drop-in HStoreField with auto-wired widget. Zero configuration for new projects.

pip install django-hstore-field
https://pypi.org/project/django-hstore-field/

Quick Start

For new projects, use django-hstore-field:

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

class Product(models.Model):
    name = models.CharField(max_length=100)
    metadata = HStoreField()

The widget is auto-wired, no form configuration needed.

Contents

LLM Context