зеркало из
1
0
Форкнуть 0
Kusto client libraries for Python
Перейти к файлу
toshetah c7c78cf262
Add a travis check that code is black formatted (#43)
2018-08-02 10:02:27 +03:00
azure-kusto-data Format all files with black (#42) 2018-08-02 09:28:08 +03:00
azure-kusto-ingest Format all files with black (#42) 2018-08-02 09:28:08 +03:00
.gitignore Add e2e tests (#14) 2018-05-07 16:40:52 +03:00
.travis.yml Add a travis check that code is black formatted (#43) 2018-08-02 10:02:27 +03:00
LICENSE Initial commit 2017-10-25 03:55:48 -07:00
README.md Update documentation (#37) 2018-07-23 16:45:21 +03:00
azure-kusto-python.pyproj Adding resource manager (#36) 2018-08-01 17:56:22 +03:00
azure-kusto-python.sln Add solution files. 2018-03-07 17:13:43 +02:00
build_packages.py Format all files with black (#42) 2018-08-02 09:28:08 +03:00
dev_requirements.txt Add a travis check that code is black formatted (#43) 2018-08-02 10:02:27 +03:00
setup.cfg Publish automatically packages when a tag is specified. (#21) 2018-06-21 08:49:08 +03:00
setup.py Format all files with black (#42) 2018-08-02 09:28:08 +03:00

README.md

Microsoft Azure Kusto Library for Python

azure-kusto-data Package provides the capability to query Kusto clusters with Python.
azure-kusto-ingest Package allows sending data to Kusto service - i.e. ingest data.

Install

Option 1: Via PyPi

To install via the Python Package Index (PyPI), type:

  • pip install azure-kusto-data
  • pip install azure-kusto-ingest

Option 2: Source Via Git

To get the source code of the SDK via git just type:

git clone git://github.com/Azure/azure-kusto-python.git
cd ./azure-kusto-python/azure-kusto-data
python setup.py install
cd ../azure-kusto-ingest
python setup.py install

Option 3: Source Zip

Download a zip of the code via GitHub or PyPi. Then follow the same instructions in option 2.

Minimum Requirements

  • Python 2.7, 3.4, 3.5, or 3.6.
  • See setup.py for dependencies

Authentication methods:

  • AAD Username/password - Provide your AAD username and password to Kusto client.
  • AAD application - Provide app ID and app secret to Kusto client.
  • AAD code - Provide only your AAD username, and authenticate yourself using a code, generated by ADAL.

Samples: