Getting Started

    You can install latest development version from our Git repository:

      If you used pip to install the library you can also use it to upgrade it:

      1. Obtain reference to the provider driver
      1. from pprint import pprint
      1. Instantiate the driver with your provider credentials

      Keep in mind that some drivers take additional arguments such as and api_version.

      For more information on which arguments you can pass to your provider driver, see provider-specific documentation and the driver docstrings.

      1. Start using the driver
      1. pprint(driver.list_sizes())
      1. Putting it all together

      The best thing to do after understanding the basic driver work-flow is to visit the documentation chapter for the API you are interested in (, Object Storage, , DNS). Chapter for each API explains some basic terminology and things you need to know to make an effective use of that API.

      After you have a good grasp of those basic concepts, you are encouraged to check the driver specific documentation (if available) and usage examples. If the driver specific documentation for the provider you are interested in is not available yet, you are encouraged to check docstrings for that driver.