Skip to content

Kusto client library optimized for data science workloads

License

Notifications You must be signed in to change notification settings

roeap/adx-arrow

Repository files navigation

dash-bootstrap-components logo

ADX-Arrow

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

Usage

from arrow_adx import KustoClient
import pyarrow as pa

client = KustoClient("<service-url>")

batches = client.execute("<database>", "<query>")
table = pa.Table.from_batches(batches)