presto-python-client
presto-python-client copied to clipboard
Python DB-API client for Presto
At first, i ran the code as showed below, it's ok, but with warnings: ``` C:\Users\xxxx\AppData\Roaming\Python\Python36\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See:...
cursor.description return None
based on #102 with proper logging on row string interpolation
I'm using Presto-python-client version 0.8.2 in Jupyter notebook. I followed the example to create the connection and manually set the `conn._http_session.verify = False`, but I still got the SSLCertVerificationError. ```...
- When the client sends a query with a `PREPARE` statement, the coordinator replies with a HTTP `header X-Presto-Added-Prepare` - The client is then expected to send further requests with...
Fixes #100
I am trying to access the prestodb using Python Client, how do I pass key store, key store password to prestodb.dbapi.connect
The current interface returns a generator of result rows and is mostly used synchronously. Leveraging `async` in Python 3 would allow to better utilize resources when managing parallel and concurrent...
Hi, is there any feature available with Python client where one can insert batches of data? this is what i found while trying to understand if Presto python client provides...