Python Async SQL Engines
Project description
PySQLXEngine
PySQLXEngine, a minimalist asynchronous SQL engine
Documentation: https://carlos-rian.github.io/pysqlx-engine/
Source Code: https://github.com/carlos-rian/pysqlx-engine
PySQLXEngine supports the option of sending raw sql to your database.
The PySQLXEngine is a minimalist Async SQL engine. Currently this lib only supports asynchronous programming, you need to code your code using await in all methods.
Database Support:
SQLitePostgreSQLMySQLMicrosoft SQL Server
OS Support:
LinuxWindowsExperimental! Unit tests were not run on Windows.
Installation
PIP
$ pip install pysqlx-engine
Poetry
$ poetry add pysqlx-engine
Example
- Create
main.pyfile.
import asyncio
from sqlx_engine import SQLXEngine
uri = "file:./db.db"
db = SQLXEngine(provider="sqlite", uri=uri)
async def main():
await db.connect()
rows = await db.query(query="select 1 as number")
print(rows)
asyncio.run(main())
- Run it
$ python3 main.py
[BaseRow(number=1)]
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 pysqlx-engine-0.1.7.tar.gz.
File metadata
- Download URL: pysqlx-engine-0.1.7.tar.gz
- Upload date:
- Size: 15.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.10.2 Linux/5.13.0-1031-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc41597429bf7dc19717e00351ce375f7efdb9a0f4ead852217000bc98b20eac
|
|
| MD5 |
7c423d5edc07df23d4be769aaf444d35
|
|
| BLAKE2b-256 |
a15fb535daa16d8683ce6d32acfef763bcc6690aa40a04fd4477e790d02d51e1
|
File details
Details for the file pysqlx_engine-0.1.7-py3-none-any.whl.
File metadata
- Download URL: pysqlx_engine-0.1.7-py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.10.2 Linux/5.13.0-1031-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf1c8c9a8d44f75afc4847c729974b8be7b904b014c72fe89882460be41d3b7b
|
|
| MD5 |
de5202773a2df138f4377f69c8ca9373
|
|
| BLAKE2b-256 |
72d66e6dc81bb81bbd4e92aa7f22f983c33a73fecd03330b754564b3bad6adee
|