├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── etc ├── catalog │ └── tpch.properties ├── config.properties ├── jvm.config └── node.properties ├── help ├── integration_tests ├── fixtures.py └── test_dbapi.py ├── prestodb ├── __init__.py ├── auth.py ├── client.py ├── constants.py ├── dbapi.py ├── exceptions.py ├── redirect.py └── transaction.py ├── run ├── setup.cfg ├── setup.py ├── tests ├── requirements.txt ├── test_client.py ├── test_exceptions.py └── test_http.py ├── tests_integration ├── tests_unit └── tox.ini /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/README.md -------------------------------------------------------------------------------- /etc/catalog/tpch.properties: -------------------------------------------------------------------------------- 1 | connector.name=tpch 2 | -------------------------------------------------------------------------------- /etc/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/etc/config.properties -------------------------------------------------------------------------------- /etc/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/etc/jvm.config -------------------------------------------------------------------------------- /etc/node.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/etc/node.properties -------------------------------------------------------------------------------- /help: -------------------------------------------------------------------------------- 1 | less README.md 2 | -------------------------------------------------------------------------------- /integration_tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/integration_tests/fixtures.py -------------------------------------------------------------------------------- /integration_tests/test_dbapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/integration_tests/test_dbapi.py -------------------------------------------------------------------------------- /prestodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/prestodb/__init__.py -------------------------------------------------------------------------------- /prestodb/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/prestodb/auth.py -------------------------------------------------------------------------------- /prestodb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/prestodb/client.py -------------------------------------------------------------------------------- /prestodb/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/prestodb/constants.py -------------------------------------------------------------------------------- /prestodb/dbapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/prestodb/dbapi.py -------------------------------------------------------------------------------- /prestodb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/prestodb/exceptions.py -------------------------------------------------------------------------------- /prestodb/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/prestodb/redirect.py -------------------------------------------------------------------------------- /prestodb/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/prestodb/transaction.py -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python integration_tests/fixtures.py $* 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/setup.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/tests/test_http.py -------------------------------------------------------------------------------- /tests_integration: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest -s integration_tests 4 | -------------------------------------------------------------------------------- /tests_unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/tests_unit -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestodb/presto-python-client/HEAD/tox.ini --------------------------------------------------------------------------------