Go to file
2014-01-21 13:57:16 -06:00
2014-01-21 13:55:49 -06:00
2014-01-21 11:54:35 -08:00
2014-01-21 13:55:49 -06:00
2014-01-21 13:55:49 -06:00
2014-01-21 13:57:16 -06:00

An OpenStack all-in-one SDK

Notes and mockups for a unified OpenStack SDK.

Example:

import io

from openstack import OpenStackClient, KeystoneAuth


client = OpenStackClient(KeystoneAuth('http://localhost:8000/', 'alex', '****'))
image = client.compute.images.list()[0]
server = client.compute.servers.create(image=image)
print server.public_ips[0]

container = client.object_storage.containers.create(name='stuff')
container.objects.create(name='a thing', contents=io.BytesIO(b'all the bytes'))
Description
RETIRED, further work has moved to Debian project infrastructure
Readme 3 MiB