Skip to main content

Query and Ingestion Client for Azure using Python

Project description

Getting started

kustopy is a Python SDK for Azure Data Explorer (Kusto).

PyPI version Downloads

Installation and Import

pip install kustopy
from kustopy import KustoPyClient as kpc

Client setup

# Get login credentials from Azure Vault
client_id = dbutils.secrets.get(scope="ce5", key="adxClientId")
client_secret = dbutils.secrets.get(scope="ce5", key="adxClientSecret")
tenant_id = dbutils.secrets.get(scope="ce5", key="adxTenantId")

# Set up the query client
client = kpc.Client(cluster='https://sample.kusto.windows.net/',
                    database='confidential-satanalytics-sample',
                    client_id=client_id,
                    client_secret=client_secret,
                    tenant_id=tenant_id,
                    truncation=False)

Queries

# Get list of all tables available in database
client.get_table_names()
# Write kusto queries to get data into pandas dataframe
client.query_to_df(user_input='SampleTable | take 100 | where fruit=="apple"')

Ingestions

# Drop table from the database
client.drop_table(tablename='SampleTable')
# Drop table from the database
client.drop_dublicates(tablename='SampleTable')
# Write pandas dataframe to the database. If the table exists you will get an Error.
client.write_table(dataframe=df, tablename='SampleTable')
# Write pandas dataframe to the database. If the table exists it will be replaced.
client.write_replace_table(dataframe=df, tablename='SampleTable')

If you want to append data to an existing table, we recommend querying the table to a pandas dataframe using .query_to_df(), doing the transformations within pandas and use .write_replace_table() to overwrite the existing table in the database. This gives you full access to the powerful functions of pandas.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kustopy-1.1.3.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kustopy-1.1.3-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file kustopy-1.1.3.tar.gz.

File metadata

  • Download URL: kustopy-1.1.3.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.11

File hashes

Hashes for kustopy-1.1.3.tar.gz
Algorithm Hash digest
SHA256 29c5db9a386f5fe50d31439fe56dbc811fdbe7ca53966aa87a038fa1bce0f50e
MD5 c87515b57080bb3dda95aef4af2b11a6
BLAKE2b-256 c31e5fc16dc386dab358fa8a27d12d0db397302060b1fcc539e2facffd038c02

See more details on using hashes here.

File details

Details for the file kustopy-1.1.3-py3-none-any.whl.

File metadata

  • Download URL: kustopy-1.1.3-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.11

File hashes

Hashes for kustopy-1.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 31d00722b9e2ec23428acd79de721e90ec769495ece6a188f1376dfc4aed4de7
MD5 a7efa19cdd5b8059fd721bfdf528f7d1
BLAKE2b-256 8ed90a0f8ca8504673ffa515e4c76e26542e11af1087fcd5c4f195cbb16f34e5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page