Downloads
Pony Object-Relational Mapper
This is the poney distribution — a fork of Pony ORM. It is installed as
pip install poney, while the import name stays pony:
python -m pip install poney
Pony is an advanced object-relational mapper. The most interesting feature of Pony is its ability to write queries to the database using Python generator expressions and lambdas. Pony analyzes the abstract syntax tree of the expression and translates it into a SQL query.
Here is an example query in Pony:
select(p for p in Product if p.name.startswith('A') and p.cost <= 1000)
Pony translates queries to SQL using a specific database dialect. Currently Pony works with SQLite, MySQL, PostgreSQL and Oracle databases.
By providing a Pythonic API, Pony facilitates fast app development. Pony is an easy-to-learn and easy-to-use library. It makes your work more productive and helps to save resources. Pony achieves this ease of use through the following:
- Compact entity definitions
- The concise query language
- Ability to work with Pony interactively in a Python interpreter
- Comprehensive error messages, showing the exact part where an error occurred in the query
- Displaying of the generated SQL in a readable format with indentation
All this helps the developer to focus on implementing the business logic of an application, instead of struggling with a mapper trying to understand how to get the data from the database.
See the example here
Support Pony ORM Development
Pony ORM is Apache 2.0 licensed open source project. If you would like to support Pony ORM development, please consider:
Online tool for database design
Pony ORM also has the Entity-Relationship Diagram Editor which is a great tool for prototyping. You can create your database diagram online at https://editor.ponyorm.com, generate the database schema based on the diagram and start working with the database using declarative queries in seconds.
Documentation
Documentation is available at https://docs.ponyorm.org The documentation source is available at https://github.com/ponyorm/pony-doc. Please create new documentation related issues here or make a pull request with your improvements.
Development
Install the development tools:
python -m pip install -r requirements-dev.txt
Format the Python code and apply safe lint fixes:
python -m ruff check --fix .
python -m ruff format .
Check the code without changing any files:
python -m ruff check .
python -m ruff format --check .
License
Pony ORM is released under the Apache 2.0 license.
PonyORM community
Please post your questions on Stack Overflow. Meet the PonyORM team, chat with the community members, and get your questions answered on our community Telegram group. Join our newsletter at ponyorm.org. Reach us on Twitter.
Copyright (c) 2013-2026 Pony ORM. All rights reserved. info (at) ponyorm.org
Release files for poney 0.8.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| poney-0.8.0.tar.gz | 362.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| poney-0.8.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 791.0 kB
Release files / poney-0.8.0.tar.gz
| Download URL | poney-0.8.0.tar.gz |
|---|---|
| Size | 362.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
bd5aecf8fb1c01e8334b74345ccfdc3b04df66f4e46e4d4fa3e7d4538361f239
|
|
BLAKE2b-256 checksum How to use checksums |
68259eb9277715519a0a2a2ef70514af3406f4b3ad3b44747a541e82ab54d752
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.6
|
Release files / poney-0.8.0-py3-none-any.whl
| Download URL | poney-0.8.0-py3-none-any.whl |
|---|---|
| Size | 428.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f1c1ae360544c30da41c24998ec08fb6d2d3ffdefb6cd4d24fee48d3af5aa686
|
|
BLAKE2b-256 checksum How to use checksums |
b3bc69241e643c3d21dad177620f40b14984bc8c959f36b2d10a78ddb744c0cb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.6
|