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
- Host: GitHub
- URL: https://github.com/roeap/adx-arrow
- Owner: roeap
- License: mit
- Created: 2022-05-14T20:10:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-15T06:55:31.000Z (over 3 years ago)
- Last Synced: 2025-01-28T15:15:44.600Z (8 months ago)
- Topics: apache-arrow, arrow, azure, azure-data-explorer, kusto, python, rust
- Language: Rust
- Homepage:
- Size: 52.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
![]()
# 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 paclient = KustoClient("")
batches = client.execute("", "")
table = pa.Table.from_batches(batches)
```