Metadata-Version: 2.1
Name: leanix-az-py
Version: 0.0.5
Summary: Functionality to support the development of Azure Functions
Author: Felix Jeske
Author-email: felix.jeske@leanix.net
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# LeanIX Python Library for Azure


This package provides two basic functions used during the development of every Azure Function. 


This package contains :

#auth:  For authentication
```
-getBearerToken(base_url, api_token) returns the authentication header
```

#graphql: For managing GraphQL stuff.
```
-runGraphql(header, json_data) runs the given graphql query
```

TODO:
------
```
-LOTS
```

Useage
------
```
Example:
from leanixpy_az import graphql  

graphql.runGraphql(<Header>, <Query>)
```
