Quick Start guide
Here's a quick start guide to help you get started with the Django Structured JSON Field.
📋 Prerequisites
- 🐍 Python >=3.8
- 🎯 Django >=4.2
- 📦 Pydantic >=2.0
📥 Installation
- Create and activate a virtual environment (recommended):
# Create virtual environment
python -m venv venv
# Activate virtual environment
# On Windows:
venv\Scripts\activate
# On macOS/Linux:
source venv/bin/activate
- Install the required packages:
pip install django>=4.2
pip install django-structured-json-field
🚀 Basic Usage
- Create a new Django project (if you haven't already):
django-admin startproject myproject
cd myproject
- Add
structured
to your project'sINSTALLED_APPS
:
# myproject/settings.py
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'structured', # Add this line
]
- Create a basic model using the structured field:
# myapp/models.py
from django.db import models
from structured.pydantic.models import BaseModel
from structured.fields import StructuredJSONField
class UserProfile(BaseModel):
name: str
age: int
email: str
class User(models.Model):
profile = StructuredJSONField(model=UserProfile)
created_at = models.DateTimeField(auto_now_add=True)
def __str__(self):
return self.profile.name
- Create and apply migrations:
python manage.py makemigrations
python manage.py migrate
- Run the development server:
python manage.py runserver
💡 Additional Tips
- ✅ The structured field will automatically validate your JSON data against the Pydantic model
- 🔄 You can use complex nested models and relationships
- 🎛️ The admin interface provides a user-friendly editor for your structured fields
- 🌐 For API development, the field integrates seamlessly with Django REST Framework
For more advanced usage examples and features, check out the How to.