├── .arcconfig ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── docker-compose.yml ├── .flake8 ├── .github └── workflows │ └── all.yml ├── .gitignore ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── examples ├── basic.py ├── multi_threaded_inserts.py └── network_testing.py ├── memsql ├── __init__.py └── common │ ├── __init__.py │ ├── connection_pool.py │ ├── conversions.py │ ├── database.py │ ├── errorcodes.py │ ├── exceptions.py │ ├── json.py │ ├── query_builder.py │ ├── random_aggregator_pool.py │ ├── test │ ├── __init__.py │ ├── conftest.py │ ├── test_connection_pool.py │ ├── test_database_adapters.py │ ├── test_query_builder.py │ ├── test_select_result.py │ └── thread_monitor.py │ └── util.py └── setup.py /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/.arcconfig -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/.github/workflows/all.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/examples/basic.py -------------------------------------------------------------------------------- /examples/multi_threaded_inserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/examples/multi_threaded_inserts.py -------------------------------------------------------------------------------- /examples/network_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/examples/network_testing.py -------------------------------------------------------------------------------- /memsql/__init__.py: -------------------------------------------------------------------------------- 1 | """ MemSQL-python 2 | """ 3 | 4 | __version__ = "3.2.0" 5 | -------------------------------------------------------------------------------- /memsql/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /memsql/common/connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/connection_pool.py -------------------------------------------------------------------------------- /memsql/common/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/conversions.py -------------------------------------------------------------------------------- /memsql/common/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/database.py -------------------------------------------------------------------------------- /memsql/common/errorcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/errorcodes.py -------------------------------------------------------------------------------- /memsql/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/exceptions.py -------------------------------------------------------------------------------- /memsql/common/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/json.py -------------------------------------------------------------------------------- /memsql/common/query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/query_builder.py -------------------------------------------------------------------------------- /memsql/common/random_aggregator_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/random_aggregator_pool.py -------------------------------------------------------------------------------- /memsql/common/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /memsql/common/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/test/conftest.py -------------------------------------------------------------------------------- /memsql/common/test/test_connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/test/test_connection_pool.py -------------------------------------------------------------------------------- /memsql/common/test/test_database_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/test/test_database_adapters.py -------------------------------------------------------------------------------- /memsql/common/test/test_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/test/test_query_builder.py -------------------------------------------------------------------------------- /memsql/common/test/test_select_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/test/test_select_result.py -------------------------------------------------------------------------------- /memsql/common/test/thread_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/test/thread_monitor.py -------------------------------------------------------------------------------- /memsql/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/memsql/common/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memsql/memsql-python/HEAD/setup.py --------------------------------------------------------------------------------