8dcff5a62147a5beb8df39df598ceac96ac3516f

This change moves the ability to enable logging out of the examples.common module and into the openstack.utils since it is generally useful. This is intended to give users a short-term solution to receive debugging messages. If they want to always have our messages logged in their application they should create their own logging handler(s) with their own format, and that will cause our messages to be sent to their handlers as they wish. https://bugs.launchpad.net/python-openstacksdk/+bug/1418307 is open to track the documentation aspect of this. Change-Id: Ic8768d529d0389b9b04bd4ea31453a82f30faf33
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",
user_name="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