├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── django_mysqlpool ├── __init__.py └── backends │ ├── __init__.py │ └── mysqlpool │ ├── __init__.py │ └── base.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .tox 2 | *.egg-info 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-mysqlpool/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-mysqlpool/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-mysqlpool/HEAD/README.rst -------------------------------------------------------------------------------- /django_mysqlpool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-mysqlpool/HEAD/django_mysqlpool/__init__.py -------------------------------------------------------------------------------- /django_mysqlpool/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_mysqlpool/backends/mysqlpool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_mysqlpool/backends/mysqlpool/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-mysqlpool/HEAD/django_mysqlpool/backends/mysqlpool/base.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-mysqlpool/HEAD/setup.py --------------------------------------------------------------------------------