An open API service indexing awesome lists of open source software.

https://github.com/roeap/adx-arrow

Kusto client library optimized for data science workloads
https://github.com/roeap/adx-arrow

apache-arrow arrow azure azure-data-explorer kusto python rust

Last synced: 7 months ago
JSON representation

Kusto client library optimized for data science workloads

Awesome Lists containing this project

README

          


dash-bootstrap-components logo

# ADX-Arrow

High performance Kusto (Azure Data Explorer) client based on Apache Arrow and Rust.

## Usage

```py
from arrow_adx import KustoClient
import pyarrow as pa

client = KustoClient("")

batches = client.execute("", "")
table = pa.Table.from_batches(batches)
```