Query Kusto like a pro from the comfort of your Jupyter notebook
Перейти к файлу
Shai Keren 303558e7cc Merge branch 'master' into PyKusto-9-Implement-parse_json 2019-12-29 18:42:09 +02:00
.idea xml party 2019-07-25 08:27:29 +03:00
pykusto Merge remote-tracking branch 'origin/master' into PyKusto-9-Implement-parse_json 2019-10-31 12:44:32 +02:00
test Merge branch 'master' into PyKusto-9-Implement-parse_json 2019-12-29 18:42:09 +02:00
.gitignore move to github 2019-07-30 14:32:19 +03:00
CODE_OF_CONDUCT.md move to github 2019-07-30 14:32:19 +03:00
LICENSE Add license 2019-07-23 08:46:28 +03:00
README.md Adding badges 2019-08-15 16:35:10 +03:00
setup.py updating azure-kusto-data version 2019-10-27 14:09:41 +02:00

README.md

Introduction

pykusto is an advanced Python SDK for Azure Data Explorer (a.k.a. Kusto).
Started as a project in the 2019 Microsoft Hackathon.

PyPI version Downloads

Getting Started

Installation

pip install pykusto

Usage

from datetime import timedelta
from pykusto.client import PyKustoClient
from pykusto.query import Query
from pykusto.expressions import column_generator as col

# Connect to cluster with AAD device authentication
client = PyKustoClient('https://help.kusto.windows.net')

# Show databases
print(client.show_databases())

# Show tables in 'Samples' database
print(client['Samples'].show_tables())

# Connect to 'StormEvents' table
table = client['Samples']['StormEvents']

# Build query
(
    Query(table)        
        # Access columns using 'col' global variable 
        .project(col.StartTime, col.EndTime, col.EventType, col.Source)
        # Specify new column name using Python keyword argument   
        .extend(Duration=col.EndTime - col.StartTime)
        # Python types are implicitly converted to Kusto types
        .where(col.Duration > timedelta(hours=1))
        .take(5)
        # Output to pandas dataframe
        .to_dataframe()
) 

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.