Skip to main content

asyncio bridge to the standard sqlite3 module

Project description

Documentation Status PyPI Release Changelog MIT Licensed

aiosqlite provides a friendly, async interface to sqlite databases.

It replicates the standard sqlite3 module, but with async versions of all the standard connection and cursor methods, plus context managers for automatically closing connections and cursors:

async with aiosqlite.connect(...) as db:
    await db.execute("INSERT INTO some_table ...")
    await db.commit()

    async with db.execute("SELECT * FROM some_table") as cursor:
        async for row in cursor:
            ...

It can also be used in the traditional, procedural manner:

db = await aiosqlite.connect(...)
cursor = await db.execute('SELECT * FROM some_table')
row = await cursor.fetchone()
rows = await cursor.fetchall()
await cursor.close()
await db.close()

aiosqlite also replicates most of the advanced features of sqlite3:

async with aiosqlite.connect(...) as db:
    db.row_factory = aiosqlite.Row
    async with db.execute('SELECT * FROM some_table') as cursor:
        async for row in cursor:
            value = row['column']

    await db.execute('INSERT INTO foo some_table')
    assert db.total_changes > 0

Install

aiosqlite is compatible with Python 3.8 and newer. You can install it from PyPI:

$ pip install aiosqlite

Details

aiosqlite allows interaction with SQLite databases on the main AsyncIO event loop without blocking execution of other coroutines while waiting for queries or data fetches. It does this by using a single, shared thread per connection. This thread executes all actions within a shared request queue to prevent overlapping actions.

Connection objects are proxies to the real connections, contain the shared execution thread, and provide context managers to handle automatically closing connections. Cursors are similarly proxies to the real cursors, and provide async iterators to query results.

License

aiosqlite is copyright Amethyst Reese, and licensed under the MIT license. I am providing code in this repository to you under an open source license. This is my personal repository; the license you receive to my code is from me and not from my employer. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiosqlite-0.22.1.tar.gz (14.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiosqlite-0.22.1-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

Details for the file aiosqlite-0.22.1.tar.gz.

File metadata

  • Download URL: aiosqlite-0.22.1.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiosqlite-0.22.1.tar.gz
Algorithm Hash digest
SHA256 043e0bd78d32888c0a9ca90fc788b38796843360c855a7262a532813133a0650
MD5 254707dc29315a01a95728d749d13e56
BLAKE2b-256 4e8a64761f4005f17809769d23e518d915db74e6310474e733e3593cfc854ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiosqlite-0.22.1.tar.gz:

Publisher: ci.yml on omnilib/aiosqlite

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiosqlite-0.22.1-py3-none-any.whl.

File metadata

  • Download URL: aiosqlite-0.22.1-py3-none-any.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiosqlite-0.22.1-py3-none-any.whl
Algorithm Hash digest
SHA256 21c002eb13823fad740196c5a2e9d8e62f6243bd9e7e4a1f87fb5e44ecb4fceb
MD5 14062cebc6e9ccb2981f6df42fad2031
BLAKE2b-256 00b7e3bf5133d697a08128598c8d0abc5e16377b51465a33756de24fa7dee953

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiosqlite-0.22.1-py3-none-any.whl:

Publisher: ci.yml on omnilib/aiosqlite

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page