An open API service indexing awesome lists of open source software.

https://github.com/platform9/qbertclient


https://github.com/platform9/qbertclient

Last synced: 21 days ago
JSON representation

Awesome Lists containing this project

README

          

# Platform9 Qbert client

This implementation of the Qbert client is an amalgam of various implementations in Platform9's internal tooling.
At the moment the goal is to get something out as quickly as possible.

# How to install
`pip install qbertclient`

# Usage

```
from qbertclient import qbert

qb = qbert.Qbert(token, 'https:///qbert/v3/)
```
The client also exposes a simple Keystone client which allows users to get a Keystone token:
```
from qbertclient import qbert
from qbertclient import keystone

du_fqdn = "endpoint.platform9.net"
username = "username@platform9.net"
password = "hunter2"
project_name = "service"

ks = keystone.Keystone(du_fqdn, username, password, project_name)
token = ks.get_token()
project_id = ks.get_project_id(project_name)

qb = qbert.Qbert(token, "https://{}/qbert/v3/{}".format(du_fqdn, project_id))
print(qb.list_clusters())
```