├── .bumpversion.cfg ├── .gitattributes ├── .github └── workflows │ ├── publish_on_pypi.yml │ └── test_with_tox.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── dbutils ├── __init__.py ├── persistent_db.py ├── persistent_pg.py ├── pooled_db.py ├── pooled_pg.py ├── simple_pooled_db.py ├── simple_pooled_pg.py ├── steady_db.py └── steady_pg.py ├── docs ├── changelog.html ├── changelog.rst ├── dependencies_db.png ├── dependencies_pg.png ├── doc.css ├── docutils.css ├── main.de.html ├── main.de.rst ├── main.html ├── main.rst ├── make.py ├── persistent.png └── pooled.png ├── pyproject.toml ├── tests ├── __init__.py ├── mock_db.py ├── mock_pg.py ├── test_persistent_db.py ├── test_persistent_pg.py ├── test_pooled_db.py ├── test_pooled_pg.py ├── test_simple_pooled_db.py ├── test_simple_pooled_pg.py ├── test_steady_db.py ├── test_steady_pg.py └── test_threading_local.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish_on_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/.github/workflows/publish_on_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test_with_tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/.github/workflows/test_with_tox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/README.md -------------------------------------------------------------------------------- /dbutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/__init__.py -------------------------------------------------------------------------------- /dbutils/persistent_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/persistent_db.py -------------------------------------------------------------------------------- /dbutils/persistent_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/persistent_pg.py -------------------------------------------------------------------------------- /dbutils/pooled_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/pooled_db.py -------------------------------------------------------------------------------- /dbutils/pooled_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/pooled_pg.py -------------------------------------------------------------------------------- /dbutils/simple_pooled_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/simple_pooled_db.py -------------------------------------------------------------------------------- /dbutils/simple_pooled_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/simple_pooled_pg.py -------------------------------------------------------------------------------- /dbutils/steady_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/steady_db.py -------------------------------------------------------------------------------- /dbutils/steady_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/dbutils/steady_pg.py -------------------------------------------------------------------------------- /docs/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/changelog.html -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/dependencies_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/dependencies_db.png -------------------------------------------------------------------------------- /docs/dependencies_pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/dependencies_pg.png -------------------------------------------------------------------------------- /docs/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/doc.css -------------------------------------------------------------------------------- /docs/docutils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/docutils.css -------------------------------------------------------------------------------- /docs/main.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/main.de.html -------------------------------------------------------------------------------- /docs/main.de.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/main.de.rst -------------------------------------------------------------------------------- /docs/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/main.html -------------------------------------------------------------------------------- /docs/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/main.rst -------------------------------------------------------------------------------- /docs/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/make.py -------------------------------------------------------------------------------- /docs/persistent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/persistent.png -------------------------------------------------------------------------------- /docs/pooled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/docs/pooled.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/mock_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/mock_db.py -------------------------------------------------------------------------------- /tests/mock_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/mock_pg.py -------------------------------------------------------------------------------- /tests/test_persistent_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_persistent_db.py -------------------------------------------------------------------------------- /tests/test_persistent_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_persistent_pg.py -------------------------------------------------------------------------------- /tests/test_pooled_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_pooled_db.py -------------------------------------------------------------------------------- /tests/test_pooled_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_pooled_pg.py -------------------------------------------------------------------------------- /tests/test_simple_pooled_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_simple_pooled_db.py -------------------------------------------------------------------------------- /tests/test_simple_pooled_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_simple_pooled_pg.py -------------------------------------------------------------------------------- /tests/test_steady_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_steady_db.py -------------------------------------------------------------------------------- /tests/test_steady_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_steady_pg.py -------------------------------------------------------------------------------- /tests/test_threading_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tests/test_threading_local.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebwareForPython/DBUtils/HEAD/tox.ini --------------------------------------------------------------------------------