├── .github ├── FUNDING.yml └── workflows │ ├── ci_psycopg2.yml │ ├── ci_psycopg2_gis.yml │ ├── ci_psycopg3.yml │ ├── ci_psycopg3_gis.yml │ └── python-publish.yml ├── .gitignore ├── AUTHORS.rst ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── django_db_geventpool ├── __init__.py ├── backends │ ├── __init__.py │ ├── base.py │ ├── creation.py │ ├── pool.py │ ├── postgis │ │ ├── __init__.py │ │ └── base.py │ ├── postgresql_psycopg2 │ │ ├── __init__.py │ │ └── base.py │ └── postgresql_psycopg3 │ │ ├── __init__.py │ │ └── base.py └── utils.py ├── docker-compose.yml ├── pyproject.toml ├── runtests_psycopg2.py ├── runtests_psycopg2_gis.py ├── runtests_psycopg3.py ├── runtests_psycopg3_gis.py ├── tests ├── __init__.py ├── models.py └── tests.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci_psycopg2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/.github/workflows/ci_psycopg2.yml -------------------------------------------------------------------------------- /.github/workflows/ci_psycopg2_gis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/.github/workflows/ci_psycopg2_gis.yml -------------------------------------------------------------------------------- /.github/workflows/ci_psycopg3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/.github/workflows/ci_psycopg3.yml -------------------------------------------------------------------------------- /.github/workflows/ci_psycopg3_gis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/.github/workflows/ci_psycopg3_gis.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/README.md -------------------------------------------------------------------------------- /django_db_geventpool/__init__.py: -------------------------------------------------------------------------------- 1 | version = 'v4.0.8' 2 | -------------------------------------------------------------------------------- /django_db_geventpool/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_db_geventpool/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/django_db_geventpool/backends/base.py -------------------------------------------------------------------------------- /django_db_geventpool/backends/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/django_db_geventpool/backends/creation.py -------------------------------------------------------------------------------- /django_db_geventpool/backends/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/django_db_geventpool/backends/pool.py -------------------------------------------------------------------------------- /django_db_geventpool/backends/postgis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_db_geventpool/backends/postgis/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/django_db_geventpool/backends/postgis/base.py -------------------------------------------------------------------------------- /django_db_geventpool/backends/postgresql_psycopg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_db_geventpool/backends/postgresql_psycopg2/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/django_db_geventpool/backends/postgresql_psycopg2/base.py -------------------------------------------------------------------------------- /django_db_geventpool/backends/postgresql_psycopg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_db_geventpool/backends/postgresql_psycopg3/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/django_db_geventpool/backends/postgresql_psycopg3/base.py -------------------------------------------------------------------------------- /django_db_geventpool/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/django_db_geventpool/utils.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests_psycopg2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/runtests_psycopg2.py -------------------------------------------------------------------------------- /runtests_psycopg2_gis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/runtests_psycopg2_gis.py -------------------------------------------------------------------------------- /runtests_psycopg3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/runtests_psycopg3.py -------------------------------------------------------------------------------- /runtests_psycopg3_gis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/runtests_psycopg3_gis.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneight/django-db-geventpool/HEAD/tox.ini --------------------------------------------------------------------------------