a python client library for easy leaseweb api access
Project description
python module to talk to LeaseWeb’s API.
For more information refer to the documentation available at [http://developer.leaseweb.com]
Installation
Install the module using pip:
pip install lswapi
Usage
The lswapi.get_leaseweb_api function creates an instance of the LeaseWeb Api object with the X-Lsw-Auth key. You can provide the api key as an argument to get_leaseweb_api:
$ python >>> import lswapi >>> client = lswapi.get_leaseweb_api(api_key="xxxx-xxx-xxxxxx") >>> client.get("/v1/bareMetals")
or as an environment variable LSW_API_KEY:
$ LSW_API_KEY=xxxx-xxxx-xxxxx python >>> import lswapi >>> client = lswapi.get_leaseweb_api() >>> client.get("/v1/bareMetals")
Contribute
Fork it
Create your feature branch (git checkout -b my-new-feature)
Commit your changes (git commit -am ‘Add some feature’)
Make sure that tests pass (make test)
Push to the branch (git push origin my-new-feature)
Create new Pull Request
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.