OpenStack Storage (Swift) Client
Go to file
Tong Li 874e0e4427 remove busy-wait so that swift client won't use up all CPU cycles
The current implementation uses busy-wait and checking flags to
communicate between threads. It wastes a lot of CPU powers. With
python 2.6 is required for Swift, the communication between
threads should now be using queue and signal mechanisms. This
patch removed the busy-wait loops and use queue and queue join
for threads coordination which will not consume CPU cycles if
a thread is blocked.

Change-Id: I648cd637a92a159d5c13baa83f357cee2dfe7937
2013-05-29 19:09:49 +00:00
bin remove busy-wait so that swift client won't use up all CPU cycles 2013-05-29 19:09:49 +00:00
doc Update the man page 2013-05-21 15:34:21 -06:00
swiftclient log get_auth request url instead of x-storage-url 2013-05-22 18:17:59 -07:00
tests Merge "Add end_marker and path query parameters" 2013-05-21 04:29:55 +00:00
tools Merge "Switch to pbr for setup." 2013-05-15 08:15:39 +00:00
.coveragerc Add .coveragerc file to show correct code coverage 2013-05-16 01:24:33 -07:00
.gitignore Use testr instead of nose. 2013-01-18 16:13:27 -05:00
.gitreview Add openstack project infrastructure. 2012-05-16 17:30:46 -04:00
.testr.conf Use testr instead of nose. 2013-01-18 16:13:27 -05:00
.unittests Use testr instead of nose. 2013-01-18 16:13:27 -05:00
LICENSE Add CHANGELOG LICENSE and MANIFEST.in 2012-05-08 16:30:13 +01:00
MANIFEST.in Switch to pbr for setup. 2013-05-01 12:23:12 -04:00
README.rst Fix links. 2012-05-08 15:21:56 +01:00
run_tests.sh Add run_tests.sh script here. 2012-05-21 12:52:55 +02:00
setup.cfg Switch to pbr for setup. 2013-05-01 12:23:12 -04:00
setup.py Switch to pbr for setup. 2013-05-01 12:23:12 -04:00
tox.ini Switch to flake8. 2013-05-01 12:23:01 -04:00

Python bindings to the OpenStack Object Storage API

This is a python client for the Swift API. There's a Python API (the swiftclient module), and a command-line script (swift).

Development takes place via the usual OpenStack processes as outlined in the OpenStack wiki. The master repository is on GitHub.

This code is based on original the client previously included with OpenStack's swift The python-swiftclient is licensed under the Apache License like the rest of OpenStack.

Contents: