Metadata-Version: 2.1
Name: kivera-sdk
Version: 1.23.0
Summary: Python library to interact with the Kivera Graphql API
Home-page: https://github.com/kivera-io/python-client
Author: Kivera
Author-email: support@kivera.io
License: MIT License
Keywords: kivera graphql gql sdk client
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Kivera SDK

Python library to interact with the Kivera Graphql API

### Installation

```
pip install kivera-sdk
```

### Example Usage
```
import kivera
import json

creds = "/path/to/user-api-key.json"
with open(creds) as f:
  creds_json = json.load(f)
client = kivera.Client(credentials=creds_json)
print(client.ListOrganizationPolicyFunctions())
print(client.ListRulesV4())
```
