Skip to content

exasol/pyexasol

Repository files navigation

PyExasol

Continuous Integration (master) Anaconda PyPi Package Downloads Supported Python Versions

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 or polars.

PyExasol provides an 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.



PyExasol Main Concepts

  • Based on WebSocket protocol;
  • Optimized for minimum overhead;
  • Easy integration with pandas and polars via HTTP transport;
  • Compression to reduce network bottleneck;

System Requirements

  • Exasol >= 7.1
  • Python >= 3.9

Getting Started

Check out PyExasol's Getting Started page for your first steps.

Developers