AirModel
Async ORM for Pydantic models and PostgreSQL, with a Django-inspired query API.
- GitHub | PyPI | Documentation
- Created by Audrey M. Roy Greenfeld | GitHub @audreyfeldroy | PyPI @audreyr
- MIT License
Define your models with standard Pydantic type annotations. AirModel turns them into PostgreSQL tables and gives you async create, get, filter, all, count, save, and delete, plus Django-style lookups like price__gte=10 and name__icontains="dragon".
from airmodel import AirDB, AirModel, AirField
class UnicornSighting(AirModel):
id: int | None = AirField(default=None, primary_key=True)
location: str
sparkle_rating: int
confirmed: bool = AirField(default=False)
# In your async handlers:
await UnicornSighting.create(location="Rainbow Falls", sparkle_rating=11)
sighting = await UnicornSighting.get(id=1)
bright_ones = await UnicornSighting.filter(sparkle_rating__gte=8, confirmed=True)
count = await UnicornSighting.count()
AirField() works like Pydantic's Field() but adds primary_key=True and UI presentation metadata (label, widget, placeholder, etc.).
Built on asyncpg and Pydantic v2. Works with Air or any async Python project.
Install
uv add AirModel
Connect to PostgreSQL
With Air
Zero config. Set DATABASE_URL in the environment and Air connects automatically:
import air
from airmodel import AirModel, AirField
app = air.Air() # reads DATABASE_URL, connects on startup
class Item(AirModel):
id: int | None = AirField(default=None, primary_key=True)
name: str
If DATABASE_URL is not set, app.db is None and no database is configured. The pool is available as app.db for transactions and table creation.
With any async Python project
import asyncpg
from airmodel import AirDB
db = AirDB()
pool = await asyncpg.create_pool("postgresql://user:pass@host/dbname")
db.connect(pool)
# ... use your models ...
await pool.close()
db.disconnect()
Creating tables
Call create_tables() after the pool is ready:
await db.create_tables()
This runs CREATE TABLE IF NOT EXISTS for every AirModel subclass and auto-migrates existing tables: any model fields not yet in the database get added via ALTER TABLE ADD COLUMN. Non-destructive: never drops columns, never changes types. New columns are added without NOT NULL so existing rows aren't broken; Pydantic still enforces requirements at the app layer.
Query API
Every method is async. Table names are derived from the module and class name, so models in different projects sharing one database won't collide. A UnicornSighting defined in myapp/models.py becomes myapp_unicorn_sighting. For standalone files with generic names like main.py, the prefix comes from pyproject.toml's project name.
CRUD
# Create
sighting = await UnicornSighting.create(location="Rainbow Falls", sparkle_rating=11)
# Read one (returns None if not found, raises MultipleObjectsReturned if ambiguous)
sighting = await UnicornSighting.get(id=1)
# Read many
all_sightings = await UnicornSighting.all()
all_sorted = await UnicornSighting.all(order_by="-sparkle_rating", limit=10)
confirmed = await UnicornSighting.filter(confirmed=True, order_by="-sparkle_rating")
page = await UnicornSighting.filter(confirmed=True, limit=10, offset=20)
# filter() with no filter kwargs is equivalent to all():
everything = await UnicornSighting.filter(order_by="location")
# Count
total = await UnicornSighting.count()
bright = await UnicornSighting.count(sparkle_rating__gte=8)
# Update
sighting.sparkle_rating = 12
await sighting.save()
await sighting.save(update_fields=["sparkle_rating"]) # partial update
# Delete
await sighting.delete()
Django-style lookups
Append __lookup to any field name in filter(), get(), or count():
| Lookup | SQL | Example |
|---|---|---|
field__gt |
> |
sparkle_rating__gt=5 |
field__gte |
>= |
sparkle_rating__gte=5 |
field__lt |
< |
sparkle_rating__lt=10 |
field__lte |
<= |
sparkle_rating__lte=10 |
field__contains |
LIKE '%...%' |
location__contains="Falls" |
field__icontains |
ILIKE '%...%' |
location__icontains="falls" |
field__in |
= ANY(...) |
sparkle_rating__in=[8, 9, 10] |
field__isnull |
IS NULL / IS NOT NULL |
confirmed__isnull=True |
Bulk operations
Single-query operations that minimize round trips. Both bulk_update() and bulk_delete() require at least one filter argument to prevent accidental mass operations.
# Insert many rows in one INSERT ... RETURNING *
sightings = await UnicornSighting.bulk_create([
{"location": "Rainbow Falls", "sparkle_rating": 11},
{"location": "Crystal Cave", "sparkle_rating": 8},
])
# UPDATE ... WHERE with row count
updated = await UnicornSighting.bulk_update(
{"confirmed": True}, sparkle_rating__gte=10
)
# DELETE ... WHERE with row count
deleted = await UnicornSighting.bulk_delete(confirmed=False)
Transactions
# With Air: app.db — without Air: your AirDB() instance
async with app.db.transaction():
await UnicornSighting.create(location="Rainbow Falls", sparkle_rating=11)
await UnicornSighting.create(location="Crystal Cave", sparkle_rating=8)
# Both rows commit together, or neither does.
Supported types
| Python | PostgreSQL |
|---|---|
str |
TEXT |
int |
INTEGER |
float |
DOUBLE PRECISION |
bool |
BOOLEAN |
datetime |
TIMESTAMP WITH TIME ZONE |
UUID |
UUID |
Fields with primary_key=True become BIGSERIAL PRIMARY KEY. Optional fields (str | None) are nullable. Required fields without defaults get NOT NULL.
Release files for AirModel 0.4.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| airmodel-0.4.2.tar.gz | 77.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| airmodel-0.4.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 91.8 kB
Release files / airmodel-0.4.2.tar.gz
| Download URL | airmodel-0.4.2.tar.gz |
|---|---|
| Size | 77.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7bdc7c87c995519ff214abd9d29f057a68863f1e6d17a18b847eb334344849cd
|
|
BLAKE2b-256 checksum How to use checksums |
1c3cdcc0fea314be8c62cb5909e7bb2c20bd4a5720938140d80e602c86a9e538
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Mar 20, 2026.
Transparency logRelease files / airmodel-0.4.2-py3-none-any.whl
| Download URL | airmodel-0.4.2-py3-none-any.whl |
|---|---|
| Size | 13.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
541ffeac7307e20494d2cd86ef0ff6cd3e90dc15244b2e56c7dfe5e34edd97b4
|
|
BLAKE2b-256 checksum How to use checksums |
25b7b93c7c37dfc549c83102c91468a66ed89931b7f39349086a48d65328f0f4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Mar 20, 2026.
Transparency log