Mult Async database for Python.
Project description
Ngiridb
ngiridb gives you simple asyncio support for a range of databases.
It allows you to make queries using the powerful SQLAlchemy Core expression language, and provides support for PostgreSQL, MySQL, and SQLite.
ngiridb is suitable for integrating against any async Web framework, such as Ngiriapi, Sanic, Responder, Quart, aiohttp, Tornado, or FastAPI.
Documentation: https://www.ngiri.co.tz/ngiridb/
Requirements: Python 3.7+
Installation
$ pip install ngiridb
Database drivers supported are:
You can install the required database drivers with:
$ pip install ngiridb[asyncpg]
$ pip install ngiridb[aiopg]
$ pip install ngiridb[aiomysql]
$ pip install ngiridb[asyncmy]
$ pip install ngiridb[aiosqlite]
Note that if you are using any synchronous SQLAlchemy functions such as engine.create_all()
or alembic migrations then you still have to install a synchronous DB driver: psycopg2 for PostgreSQL and pymysql for MySQL.
Quickstart
For this example we'll create a very simple SQLite database to run some queries against.
$ pip install ngiridb[aiosqlite]
$ pip install ipython
We can now run a simple example from the console.
Note that we want to use ipython
here, because it supports using await
expressions directly from the console.
# Create a database instance, and connect to it.
from ngiridb import Database
database = Database('sqlite+aiosqlite:///example.db')
await database.connect()
# Create a table.
query = """CREATE TABLE HighScores (id INTEGER PRIMARY KEY, name VARCHAR(100), score INTEGER)"""
await database.execute(query=query)
# Insert some data.
query = "INSERT INTO HighScores(name, score) VALUES (:name, :score)"
values = [
{"name": "Daisy", "score": 92},
{"name": "Neil", "score": 87},
{"name": "Carol", "score": 43},
]
await database.execute_many(query=query, values=values)
# Run a database query.
query = "SELECT * FROM HighScores"
rows = await database.fetch_all(query=query)
print('High Scores:', rows)
Check out the documentation on making database queries for examples of how to start using ngiridb together with SQLAlchemy core expressions.
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 Distributions
Built Distribution
File details
Details for the file ngiridb-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: ngiridb-0.0.1-py3-none-any.whl
- Upload date:
- Size: 22.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee2669a3580c01d45afcbe6f767046c82c0ea080276790c21550b66a818b2809 |
|
MD5 | dff138cb9af5bdf0dc2cf6d418e1b02e |
|
BLAKE2b-256 | 5337ea47cfa8b2f470a7d5fb104f2947da1dc7104c09842e4d113d0c19682722 |