iland cloud Python SDK
- Free software: BSD License
- Documentation: https://iland-sdk.readthedocs.org.
- iland cloud v1.0 API doc: https://us-east-1.api.ilandcloud.com/doc/current/.
This library provides a pure Python interface for the iland cloud API version 1.0. It works with Python versions from 2.7+.
iland cloud provides Enterprise-grade IaaS and this library is intended to make it even easier for Python programmers to use.
The code is hosted at https://github.com/ilanddev/python-sdk
Check out the latest development version anonymously with:
$ git clone https://github.com/ilanddev/python-sdk.git $ cd python-sdk
For documentation on using iland's Python SDK check out our Wiki.
At the command line:
$ pip install iland-sdk
Or, if you have virtualenvwrapper installed:
$ mkvirtualenv iland-sdk $ pip install iland-sdk
You can also install iland-sdk using the actual source checkout:
$ git clone https://github.com/ilanddev/python-sdk.git $ cd python-sdk $ pip install -e .
To run the unit tests:
$ make test
To run the unit tests for all supported Python interpreters:
$ make test-all
To check your changes before submitting a pull request:
$ make lint
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.