A simple yet powerful CloudStack API client for Python and the command-line.
Project description
A simple, yet powerful CloudStack API client for python and the command-line.
Python 2.6+ and 3.3+ support.
All present and future CloudStack API calls and parameters are supported.
Syntax highlight in the command-line client if Pygments is installed.
BSD license.
Installation
pip install cs
Usage
In Python:
from cs import CloudStack cs = CloudStack(endpoint='https://api.exoscale.ch/compute', key='cloudstack api key', secret='cloudstack api secret') vms = cs.listVirtualMachines() cs.createSecurityGroup(name='web', description='HTTP traffic')
>From the command-line, this requires some configuration:
cat $HOME/.cloudstack.ini [cloudstack] endpoint = https://api.exoscale.ch/compute key = cloudstack api key secret = cloudstack api secret
Then:
$ cs listVirtualMachines { "count": 1, "virtualmachine": [ { "account": "...", ... } ] } $ cs authorizeSecurityGroupIngress \ cidrlist="0.0.0.0/0" endport=443 startport=443 \ securitygroupname="blah blah" protocol=tcp
The command-line client polls when async results are returned. To disable polling, use the --async flag.
Configuration is read from several locations, in the following order:
The CLOUDSTACK_ENDPOINT, CLOUDSTACK_KEY, CLOUDSTACK_SECRET and CLOUDSTACK_METHOD environment variables,
A CLOUDSTACK_CONFIG environment variable pointing to an .ini file,
A cloudstack.ini file in the current working directory,
A .cloudstack.ini file in the home directory.
To use that configuration scheme from your Python code:
from cs import CloudStack, read_config cs = CloudStack(**read_config())
Note that read_config() can raise SystemExit if no configuration is found.
CLOUDSTACK_METHOD or the method entry in the configuration file can be used to change the HTTP verb used to make CloudStack requests. By default, requests are made with the GET method but CloudStack supports POST requests. POST can be useful to overcome some length limits in the CloudStack API.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cs-0.6.2.tar.gz
.
File metadata
- Download URL: cs-0.6.2.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f59a5158c1574a0c32b35a9b8877e66113c26d184afc8324d3b693d1a8112b5c |
|
MD5 | 292f9010492a7b254971b8c4e2ac9998 |
|
BLAKE2b-256 | fad0199d4e2c22e0eaa06cbdd6675492f866d6e434ed147171d6a215fe9f5d55 |
File details
Details for the file cs-0.6.2-py2.py3-none-any.whl
.
File metadata
- Download URL: cs-0.6.2-py2.py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f606fdc428b7355141c1f5a8a2ec8129f3ee3fbc6c52ba6650a545ca0554092 |
|
MD5 | c994ad677195258fae3c7c5b04cb5bca |
|
BLAKE2b-256 | cca4b8f7e96c2df731084103acd8e56dedde512e928d307bb81b1e8b90232972 |