Unofficial API client for the FireAPI from 24fire GmbH.
Project description
Python FireAPI Client
Unofficial API client for the FireAPI from 24fire GmbH.
Installation
pip install pyonfireapi
Examples
1. List all VMs
from pyonfireapi import FireAPIClient
# Set the client and authenticate
client = FireAPIClient("api-key")
# Perform the Request
r = client.vm.list_all_vms()
# Print statuscode
print("Status Code: ", r.status_code)
# Print json
print(r.json())
Output:
Status Code: 200
{
"status": "success",
"requestID": "a24effc3-b1d6-46a3-a49a-fe07734717ad",
"message": "All vm data are listed below",
"data": {
"total_vms": 2,
"total_stats": {
"cores": 12,
"mem": 3072,
"disk": 20
},
"list": [
{
"vmid": 30071,
"createDate": "2023-05-31T00:38:40.000Z",
"node": "node09",
"config": {
"cores": 10,
"mem": 1024,
"disk": 10
}
},
{
"vmid": 30074,
"createDate": "2023-06-10T11:10:34.000Z",
"node": "node09",
"config": {
"cores": 2,
"mem": 2048,
"disk": 10
}
}
]
}
}
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
pyonfireapi-0.0.2.tar.gz
(7.0 kB
view hashes)
Built Distribution
Close
Hashes for pyonfireapi-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65d69530a18d42380bda745a01f938d30e2a9b102f270ad32d5fd800b1b419a0 |
|
MD5 | f049aef91246805c92140c068652deb3 |
|
BLAKE2b-256 | 7b0e174410d6730fc67a407a31752e708f696c2b7fe55f29b107283cecc780b8 |