aiosqlite + strict pydantic models
Project description
aiosqlite-strict
Strict Pydantic models on top of aiosqlite.
Install
pip install aiosqlite-strict
Usage
import asyncio
import aiosqlite
from aiosqlite_strict import TableModel
class AppTable(TableModel):
...
class User(AppTable):
__indices__ = [("name",)]
name: str
email: str
async def main() -> None:
async with aiosqlite.connect(":memory:") as db:
await AppTable.sqlite_init(db)
user1 = await User.create(db, name="name1", email="email1")
_ = await User.create(db, name="name2", email="email2")
async with User.select(db) as cursor:
print(await cursor.fetchall())
await user1.update_one(db, name="name1.1")
async with User.select(db, "WHERE name=?", ("name1.1",)) as cursor:
print(await cursor.fetchall())
asyncio.run(main())
Development
uv run pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiosqlite_strict-1.0.9.tar.gz.
File metadata
- Download URL: aiosqlite_strict-1.0.9.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f539faf206d6b9ed0a62149924f0ef8480ae981cd51744c3a86dabad1221501
|
|
| MD5 |
4dc6310e7982bc0bd599fc467c0195a9
|
|
| BLAKE2b-256 |
e5bc52e54564748a644865e5b6d95b4c1d1574edfe252739614a120802dcb298
|
File details
Details for the file aiosqlite_strict-1.0.9-py3-none-any.whl.
File metadata
- Download URL: aiosqlite_strict-1.0.9-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b043863dff8ee4d5ecac5f7ea4174357c1b47afc8fe0627649758eefdc8f1e8b
|
|
| MD5 |
3a641bed147b098740de5f4890fcc70d
|
|
| BLAKE2b-256 |
5f2ba8e1ccff17fb7d253416557c80fc64a2afc8dcad91652580a87d625eb444
|