Exasol python driver with extra features
Project description
Pyexasol
PyEXASOL is the officially supported Python connector for Exasol. It helps to handle massive volumes of data commonly associated with this DBMS.
You may expect significant performance improvement over ODBC in a single process scenario involving pandas.
PyEXASOL provides API to read & write multiple data streams in parallel using separate processes, which is necessary to fully utilize hardware and achieve linear scalability. With PyEXASOL you are no longer limited to a single CPU core.
Quick links
- Getting started
- Reference
- Examples
- Best practices
- Local config (.ini file)
- SQL formatting
- HTTP Transport
- HTTP Transport (multiprocessing)
- Parallelism
- SSL encryption
- WebSocket protocol versions
- Performance tests
- UDF scripts output
- DB-API 2.0 compatibility
- Optional dependencies
- Changelog
PyEXASOL main concepts
- Based on WebSocket protocol;
- Optimized for minimum overhead;
- Easy integration with pandas via HTTP transport;
- Compression to reduce network bottleneck;
System requirements
- Exasol >= 7.1
- Python >= 3.9
Getting started
Install PyEXASOL:
pip install pyexasol[pandas]
Run basic query:
import pyexasol
C = pyexasol.connect(dsn='<host:port>', user='sys', password='exasol')
stmt = C.execute("SELECT * FROM EXA_ALL_USERS")
for row in stmt:
print(row)
Load data into pandas.DataFrame
:
import pyexasol
C = pyexasol.connect(dsn='<host:port>', user='sys', password='exasol', compression=True)
df = C.export_to_pandas("SELECT * FROM EXA_ALL_USERS")
print(df.head())
You may set up local config to store your personal Exasol credentials and connection options:
import pyexasol
C = pyexasol.connect_local_config('my_config')
stmt = C.execute("SELECT CURRENT_TIMESTAMP")
print(stmt.fetchone())
Connect to Exasol SAAS using OpenID token for authentication:
import pyexasol
C = pyexasol.connect(dsn='<host:port>', user='sys', refresh_token='<token>')
stmt = C.execute("SELECT * FROM EXA_ALL_USERS")
for row in stmt:
print(row)
Created by
Vitaly Markov, 2018 — 2022
Enjoy!
Maintained by
Exasol 2023 — Today
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyexasol-0.26.0.tar.gz
.
File metadata
- Download URL: pyexasol-0.26.0.tar.gz
- Upload date:
- Size: 48.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d00fd8e05936767c332c50be5f953514579a2c7a80f8a8922cbf7d8a56603fbb |
|
MD5 | 5680aa74585f568616c712365e0ecb12 |
|
BLAKE2b-256 | 26988a43fa85e173988d63bfd0be7fba3d6e4f06bd74eff075e806c10608939a |
File details
Details for the file pyexasol-0.26.0-py3-none-any.whl
.
File metadata
- Download URL: pyexasol-0.26.0-py3-none-any.whl
- Upload date:
- Size: 56.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4bd2cf28bfb42352916efae7878beac847ca49bbab7be9f0066346ca0865de4 |
|
MD5 | 3f27d8576188c93e6294627a28f362e8 |
|
BLAKE2b-256 | 8fb641f72ec98129fe48034a64a65a24e43357b949d47d85a9f73cf6e5089bb2 |