aboutsummaryrefslogtreecommitdiff
path: root/databases/py-aiosqlite
Commit message (Collapse)AuthorAgeFilesLines
* databases/py-aiosqlite: Update to 0.17.0Romain Tartière2021-05-232-4/+4
| | | | | ChangeLog: https://aiosqlite.omnilib.dev/en/stable/changelog.html#v0-17-0
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to 0.15.0Romain Tartière2020-07-242-4/+4
| | | | Notes: svn path=/head/; revision=542980
* Update to 0.12.0Romain Tartière2020-04-282-4/+4
| | | | Notes: svn path=/head/; revision=533231
* New port: databases/py-aiosqliteRomain Tartière2020-01-123-0/+34
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. WWW: https://pypi.python.org/pypi/aiosqlite Notes: svn path=/head/; revision=522749