Utilitarian Python ORM for Postgres/SQLite, backed by asyncpg/aiosqlite, Pydantic, and PyPika
Project description
p3orm
Utilitarian Python ORM for Postgres/SQLite powered by asyncpg/aiosqlite, Pydantic, and PyPika
Documentation: https://rafalstapinski.github.io/p3orm
Source Code: https://github.com/rafalstapinski/p3orm
Philosophy
90% of the time we talk to a database is with a CRUD operation. p3orm provides convenience helpers for fetching (one, first, many), inserting (one, many), updating (one), and deleting (one, many).
The remaining 10% is a bit more complicated. p3orm doesn't attempt to hide SQL queries or database interactions behind any magic. Instead, it empowers you to write direct and legible SQL queries with PyPika and execute them explicitly against the database.
Notably, objects created or fetched by p3orm are dead, they're just Pydantic models. If you want to interact with the database, you do so explicitly.
tl;dr - p3orm makes easy things easy, and hard things possible
Features
- Comprehensive type annotations (full intellisense support)
- String type validation an parsing powered by
Pydantic - Support for
PyPikaqueries - Support for all
postgresdatatypes - Support for all
sqlitedatatypes
Installation
Install with poetry
poetry add p3orm[sqlite]
# or
poetry add p3orm[postgres]
or with pip
pip install p3orm[sqlite]
# or
pip install p3orm[postgres]
The [sqlite] extra installs aiosqlite as p3orm's database driver, whereas [postgres] installs asyncpg.
Basic Usage
from datetime import datetime
from p3orm import Column, Table
from p3orm import sqlite as db
# or: from p3orm import postgres as db
class Thing(Table):
id = Column(int, pk=True, autogen=True)
name = Column(str)
created_at = Column(datetime, autogen=True)
await db().connect(":memory:")
thing = Thing(name="Name")
inserted = await Thing.insert_one(thing)
fetched = await Thing.fetch_first(Thing.id == 1)
fetched.name = "Changed"
updated = await Thing.update_one(fetched)
deleted = await Thing.delete_where(Thing.id == updated.id)
await db().disconnect()
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 p3orm-0.10.3.tar.gz.
File metadata
- Download URL: p3orm-0.10.3.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1016-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7438bef916283fcd4c4094a5b916380a19330913ad70517b31be41869aca0cc7
|
|
| MD5 |
732af7a3f96655b909dea2cc6b3a4c7a
|
|
| BLAKE2b-256 |
ca984a7102897228b0d6f6b9eba6e9e630ee1c376dedfdf2d0bea04ac2c94e6a
|
File details
Details for the file p3orm-0.10.3-py3-none-any.whl.
File metadata
- Download URL: p3orm-0.10.3-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1016-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
238c2cfb06a29e0057dd40ee83146d04a10e3c15233cf3b0daf6f443c7377c93
|
|
| MD5 |
fe83131b7b0808b94f665a78e3140c8c
|
|
| BLAKE2b-256 |
b74e0b6809c061a2c96af08a5c02ba5fd823a48b72297d1142694b25a74f165f
|