A Python wrapper around DuckDB to add some convenience.
Project description
pyduckdb
Python wrapper for DuckDB to add type hinting and more closely mirror SQLite. This is still a rough work in progress, but should hopefully highlight the utility of the PEP 249 abstract base classes.
This implementation provides Python type hints, context managers, and more distinct cursor types on top of DuckDB. This is not intended to be used in production, but as a test bed for some ideas and to demonstrate the abstract base classes.
Installation
python3 -mpip install pyduckdb
Usage
Uses the standard Python database API.
from pyduckdb import connect
def main():
with connect(":memory:") as connection:
with connection.execute("SELECT 1;") as cursor:
print(next(cursor))
if __name__ == "__main__":
main()
There is a very naive async implementation available, which essentially involves wrapping every call
with asyncio.to_thread:
import asyncio
from pyduckdb.aiopyduckdb import connect
async def main():
async with connect(":memory:") as connection:
async with await connection.execute("SELECT 1;") as cursor:
print(await cursor.fetchone())
if __name__ == "__main__":
asyncio.run(main())
Differences from the PEP:
Connections implement theexecute*()functions from the cursor, and return a cursor, as SQLite does.Connections andCursors implementexecutescript()as SQLite does.Cursors implement the same transactional features as theirConnections.
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
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 pyduckdb-0.0.1b3-py3-none-any.whl.
File metadata
- Download URL: pyduckdb-0.0.1b3-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fc4bbfaac518a4e57ee3f55caa444edc88175cd3ca41ae1e57e010dabe7893c
|
|
| MD5 |
31161aeac342c4abc5ce6525c4566d15
|
|
| BLAKE2b-256 |
ef7a472415a9d42599b533402578e65af9ebf53fed3baccf052649af106549a6
|