https://github.com/psqlpy-python/psqlpy-piccolo
PSQLPy integration for Piccolo-ORM
https://github.com/psqlpy-python/psqlpy-piccolo
Last synced: 9 days ago
JSON representation
PSQLPy integration for Piccolo-ORM
- Host: GitHub
- URL: https://github.com/psqlpy-python/psqlpy-piccolo
- Owner: psqlpy-python
- Created: 2024-06-24T19:56:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-02T17:29:41.000Z (13 days ago)
- Last Synced: 2026-03-02T20:56:31.331Z (13 days ago)
- Language: Python
- Size: 144 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://pypi.org/project/psqlpy-piccolo/)
# psqlpy-piccolo
This is a third-party Rust engine for [Piccolo ORM](https://github.com/piccolo-orm/piccolo).
Under the hood, this engine uses [PSQLPy](https://github.com/qaspen-python/psqlpy), which is Rust-based and blazingly fast 🔥.
## Installation
You can install package with `pip` or `poetry`.
poetry:
```bash
$ poetry add psqlpy-piccolo
```
pip:
```bash
$ pip install psqlpy-piccolo
```
## Usage
Usage is as easy as possible.
PSQLPy based engine has the same interface as other engines from piccolo.
```python
from psqlpy_piccolo import PSQLPyEngine
DB = PSQLPyEngine(
config={
"host": "127.0.0.1",
"port": 5432,
"user": "postgres",
"password": "postgres",
"database": "psqlpy-piccolo",
},
)
```