├── .coveragerc ├── .github └── workflows │ └── app.yaml ├── .gitignore ├── CHANGELOG.md ├── DEV.md ├── LICENSE ├── README.md ├── conftest.py ├── pyproject.toml ├── pytest.ini ├── requirements-lint.txt ├── requirements-test.txt ├── setup.cfg ├── setup.py ├── sqlbind ├── __init__.py └── py.typed └── tests ├── __init__.py ├── test_sqlbind.py └── test_sqlite3.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = sqlbind 3 | 4 | [report] 5 | fail_under = 100 6 | -------------------------------------------------------------------------------- /.github/workflows/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/.github/workflows/app.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /.coverage 3 | /dist 4 | /build 5 | *.egg-info 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/DEV.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/conftest.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-lint.txt: -------------------------------------------------------------------------------- 1 | mypy==1.8.0 2 | black==24.2.0 3 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | pytest 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/setup.py -------------------------------------------------------------------------------- /sqlbind/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/sqlbind/__init__.py -------------------------------------------------------------------------------- /sqlbind/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_sqlbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/tests/test_sqlbind.py -------------------------------------------------------------------------------- /tests/test_sqlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/sqlbind/HEAD/tests/test_sqlite3.py --------------------------------------------------------------------------------