Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

asyncio bridge to the standard sqlite3 module

License

NotificationsYou must be signed in to change notification settings

tortoise/aiosqlite

 
 

AsyncIO bridge to the standardsqlite3 module for Python 3.5+

build statusversionlicensecode style

Install

aiosqlite is compatible with Python 3.5 and newer.You can install it from PyPI with the following command:

$ pip install aiosqlite

Usage

aiosqlite replicates the standardsqlite3 module, but with async versionsof all the standard connection and cursor methods, and context managers forautomatically closing connections:

asyncwithaiosqlite.connect(...)asdb:awaitdb.execute('INSERT INTO some_table ...')awaitdb.commit()asyncwithdb.execute('SELECT * FROM some_table')ascursor:asyncforrowincursor:                ...

Alternately, you can continue using connections more directly:

asyncwithaiosqlite.connect(...)asdb:cursor=awaitdb.execute('SELECT * FROM some_table')row=awaitcursor.fetchone()rows=awaitcursor.fetchall()awaitcursor.close()

aiosqlite also replicates most of the standard connection properties, as neededfor advanced use cases like row or text factories, or for tracking the totalnumber of rows inserted, modified, or deleted:

asyncwithaiosqlite.connect(...)asdb:db.row_factory=aiosqlite.Rowasyncwithdb.execute'SELECT * FROM some_table')ascursor:value=row['column']awaitdb.execute('INSERT INTO foo some_table')assertdb.total_changes>0

Details

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

Connection objects are proxies to the real connections, contain the sharedexecution thread, and provide context managers to handle automatically closingconnections. Cursors are similarly proxies to the real cursors, and provideasync iterators to query results.

License

aiosqlite is copyrightJohn Reese, and licensed under theMIT license. I am providing code in this repository to you under an open sourcelicense. This is my personal repository; the license you receive to my codeis from me and not from my employer. See theLICENSE file for details.

About

asyncio bridge to the standard sqlite3 module

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python97.6%
  • Makefile2.4%

[8]ページ先頭

©2009-2025 Movatter.jp