├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── HISTORY.rst ├── INSTALL.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── MySQLdb ├── __init__.py ├── _exceptions.py ├── _mysql.c ├── compat.py ├── connections.py ├── constants │ ├── CLIENT.py │ ├── CR.py │ ├── ER.py │ ├── FIELD_TYPE.py │ ├── FLAG.py │ └── __init__.py ├── converters.py ├── cursors.py └── times.py ├── README.md ├── ci └── test_mysql.py ├── doc ├── FAQ.rst ├── Makefile ├── MySQLdb.constants.rst ├── MySQLdb.rst ├── _exceptions.rst ├── _mysql.rst ├── conf.py ├── index.rst ├── make.bat ├── modules.rst └── user_guide.rst ├── metadata.cfg ├── setup.py ├── setup_common.py ├── setup_posix.py ├── setup_windows.py ├── site.cfg └── tests ├── capabilities.py ├── configdb.py ├── dbapi20.py ├── default.cnf ├── test_MySQLdb_capabilities.py ├── test_MySQLdb_dbapi20.py ├── test_MySQLdb_nonstandard.py ├── test_MySQLdb_times.py ├── test__mysql.py ├── test_cursor.py └── travis.cnf /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/INSTALL.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/Makefile -------------------------------------------------------------------------------- /MySQLdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/__init__.py -------------------------------------------------------------------------------- /MySQLdb/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/_exceptions.py -------------------------------------------------------------------------------- /MySQLdb/_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/_mysql.c -------------------------------------------------------------------------------- /MySQLdb/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/compat.py -------------------------------------------------------------------------------- /MySQLdb/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/connections.py -------------------------------------------------------------------------------- /MySQLdb/constants/CLIENT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/constants/CLIENT.py -------------------------------------------------------------------------------- /MySQLdb/constants/CR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/constants/CR.py -------------------------------------------------------------------------------- /MySQLdb/constants/ER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/constants/ER.py -------------------------------------------------------------------------------- /MySQLdb/constants/FIELD_TYPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/constants/FIELD_TYPE.py -------------------------------------------------------------------------------- /MySQLdb/constants/FLAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/constants/FLAG.py -------------------------------------------------------------------------------- /MySQLdb/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/constants/__init__.py -------------------------------------------------------------------------------- /MySQLdb/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/converters.py -------------------------------------------------------------------------------- /MySQLdb/cursors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/cursors.py -------------------------------------------------------------------------------- /MySQLdb/times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/MySQLdb/times.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/README.md -------------------------------------------------------------------------------- /ci/test_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/ci/test_mysql.py -------------------------------------------------------------------------------- /doc/FAQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/FAQ.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/MySQLdb.constants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/MySQLdb.constants.rst -------------------------------------------------------------------------------- /doc/MySQLdb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/MySQLdb.rst -------------------------------------------------------------------------------- /doc/_exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/_exceptions.rst -------------------------------------------------------------------------------- /doc/_mysql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/_mysql.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/modules.rst -------------------------------------------------------------------------------- /doc/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/doc/user_guide.rst -------------------------------------------------------------------------------- /metadata.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/metadata.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/setup.py -------------------------------------------------------------------------------- /setup_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/setup_common.py -------------------------------------------------------------------------------- /setup_posix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/setup_posix.py -------------------------------------------------------------------------------- /setup_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/setup_windows.py -------------------------------------------------------------------------------- /site.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/site.cfg -------------------------------------------------------------------------------- /tests/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/capabilities.py -------------------------------------------------------------------------------- /tests/configdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/configdb.py -------------------------------------------------------------------------------- /tests/dbapi20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/dbapi20.py -------------------------------------------------------------------------------- /tests/default.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/default.cnf -------------------------------------------------------------------------------- /tests/test_MySQLdb_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/test_MySQLdb_capabilities.py -------------------------------------------------------------------------------- /tests/test_MySQLdb_dbapi20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/test_MySQLdb_dbapi20.py -------------------------------------------------------------------------------- /tests/test_MySQLdb_nonstandard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/test_MySQLdb_nonstandard.py -------------------------------------------------------------------------------- /tests/test_MySQLdb_times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/test_MySQLdb_times.py -------------------------------------------------------------------------------- /tests/test__mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/test__mysql.py -------------------------------------------------------------------------------- /tests/test_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/test_cursor.py -------------------------------------------------------------------------------- /tests/travis.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mysqlclient-python/HEAD/tests/travis.cnf --------------------------------------------------------------------------------