Django HStore Project¶
A monorepo for the Django HStore ecosystem, human-friendly PostgreSQL hstore support for Django admin.
Packages¶
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
Drop-in HStoreField with auto-wired widget. Zero configuration for new projects.
pip install 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¶
User Guide
Technical
Developer Guide
LLM Context