Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 596 Bytes

File metadata and controls

23 lines (18 loc) · 596 Bytes

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'])