https://github.com/null-none/python-hubgridcloud
The SimplyStack API allows you to manage Stacklets and resources within the SimplyStack cloud in a simple.
https://github.com/null-none/python-hubgridcloud
api cloud python rest-api
Last synced: 11 months ago
JSON representation
The SimplyStack API allows you to manage Stacklets and resources within the SimplyStack cloud in a simple.
- Host: GitHub
- URL: https://github.com/null-none/python-hubgridcloud
- Owner: null-none
- License: mit
- Created: 2022-03-29T12:15:51.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T19:54:59.000Z (almost 2 years ago)
- Last Synced: 2025-03-27T21:12:10.106Z (12 months ago)
- Topics: api, cloud, python, rest-api
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-hubgridcloud
The SimplyStack API allows you to manage Stacklets and resources within the SimplyStack cloud in a simple.
#### Install
```bash
pip install hubgridcloud
```
#### Examples
```python
from hubgridcloud.client import Client
client = Client("KEY")
client.account()
client.stacklets()
client.create_tags(data={"name": "test"})
client.tags()
client.create_stacklets(data={"size": "b-1vcpu-1gb", "region": "fra", "private_networking": False, "name": "test", "image": "ubuntu-20-04-4-x64", "backups": False, "tags": []})
client.regions()
client.sizes()
client.distributions()
client.applications()
client.containers()
client.keys()
```