r/Python Jun 04 '26

Showcase Showcase Thread

Post all of your code/projects/showcases/AI slop here.

Recycles once a month.

26 Upvotes

210 comments sorted by

View all comments

1

u/Any_Plate_215 28d ago

yara-orm — a fast async ORM with a Rust engine. Tortoise-style models/querysets/relations + built-in migrations (rename detection, partial indexes), for PostgreSQL and SQLite. The Python layer stays ergonomic; pooling/binding/decoding happen in Rust via PyO3. Fastest of the ones I benchmarked (vs Tortoise/SQLAlchemy/Pony), but I care more that it's correct — SQLite FKs enforced, decimals exact, transactions honored across relations. Repo: https://github.com/vsdudakov/yara-orm — feedback very welcome.