/skytap-api

A Python based API for using the Skytap Web Services API.

Primary LanguagePythonApache License 2.0Apache-2.0

skytap-api

skytapAPI is a pythonic implementation of a Facade pattern for the Skytap Rest Web Services API.

Requirements

Using skytapAPI

Example

# Get a specific Skytap user
import skytapAPI

skytap = skytapAPI.SkytapAPI('https://cloud.skytap.com', 'login@example.com',
                         'someskytapapikey')
user = skytap.get_user('12345')
print(user['email'])