18feab07459501530825ebab46ffd5212645c1d7
While exploring adding a parameter that each Proxy class would need, I was reminded that we have to manually ensure they all take the same parameters. Ideally we should just have them all inherit from one base, and then when we load them, ensure they're all subclasses of that base. This doesn't add any new tests because 1) it would require a ton of mocking to the other things which are implicitly in the way (since this is called from _open, which is called during __init__), and that doesn't seem worth it because 2) it's already in a code path that gets tested by many other Connection related tests. Change-Id: I953bd78f05e8d72a53d262b16c349d5d69da2fbf
OpenStack Python SDK
The python-openstacksdk is a collection of libraries for
building applications to work with OpenStack clouds. The project aims to
provide a consistent and complete set of interactions with OpenStack's
many services, along with complete documentation, examples, and
tools.
This SDK is under active development, and in the interests of providing a high-quality interface, the APIs provided in this release may differ from those provided in future release.
Usage
The following example simply connects to an OpenStack cloud and lists the containers in the Object Store service.:
from openstack import connection
conn = connection.Connection(auth_url="http://openstack:5000/v3",
project_name="big_project",
username"SDK_user",
password="Super5ecretPassw0rd")
for container in conn.object_store.containers():
print(container.name)
Documentation
Documentation is available at http://python-openstacksdk.readthedocs.org/en/latest/
Requirements
- Python 2.6+, Python 3.3+
- pbr
- requests
- six
- stevedore
- oslo.utils
License
Apache 2.0
Description