aiosqlite icon indicating copy to clipboard operation
aiosqlite copied to clipboard

asyncio bridge to the standard sqlite3 module

Results 63 aiosqlite issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 22.4.25 to 22.7.1. Release notes Sourced from flake8-bugbear's releases. 22.7.1 Implement late-binding loop check (#265) late-binding closures are a classic gotcha. 22.6.22 Don't crash when select /...

dependencies

Bumps [coverage[toml]](https://github.com/nedbat/coveragepy) from 6.2 to 6.4.2. Release notes Sourced from coverage[toml]'s releases. 6.4.2 Updated for a small change in Python 3.11.0 beta 4: modules now start with a line with...

dependencies

Bumps [mypy](https://github.com/python/mypy) from 0.931 to 0.971. Commits 1f08cf4 Update version to 0.971 61c0064 Add back workaround to avoid confusing mypy.types and types in pyinfo (#13176) d8d900c Update version to 0.971+dev...

dependencies

Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 4.3.2 to 5.1.1. Release notes Sourced from sphinx's releases. v5.1.1 Changelog: https://www.sphinx-doc.org/en/master/changes.html v5.1.0 Changelog: https://www.sphinx-doc.org/en/master/changes.html v5.0.2 Changelog: https://www.sphinx-doc.org/en/master/changes.html v5.0.1 Changelog: https://www.sphinx-doc.org/en/master/changes.html v5.0.0 No release notes provided. v5.0.0b1...

dependencies

I get the too many open files error on Linux when I used aiosqlite because I would open a new connection every time I wanted to do something. I fixed...

Bumps [black](https://github.com/psf/black) from 22.3.0 to 22.6.0. Release notes Sourced from black's releases. 22.6.0 Style Fix unstable formatting involving #fmt: skip and # fmt:skip comments (notice the lack of spaces) (#2970)...

dependencies

import asyncio import aiosqlite async def main(): async with aiosqlite.connect(":memory:") as db: db.row_factory = aiosqlite.Row async with await db.cursor() as cursor: await cursor.execute("SELECT 1") row = await cursor.fetchone() print(type(row)) async...

text_factory type hint was simply "Type" which is kinda right for the most common cases of the parameter (str and bytes). However, text_fatory can be any other callable that accepts...

Fisrst of all: it ins not possible use straight sphinx to build cleanly documentation out of source tree. ```console + /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man Running Sphinx v4.5.0...

### Description aiosqlite should import all of sqlite3's available things e.g. exception classes like DataError. ### Details * OS: * Python version: * aiosqlite version: * Can you repro on...