Go to file
Nick Craig-Wood 402d87c757 Stop loss of precision when writing 'x-object-meta-mtime'
str(float) isn't a good way of converting a float to a string with all the precision

Eg

    >>> f = os.path.getmtime("z")
    >>> f
    1347717491.343554
    >>> str(f)
    '1347717491.34'
    >>> "%f" % f
    '1347717491.343554'

Change-Id: I6eb02f7f6730eff814c348d1039eae4606642b52
2012-11-18 11:42:18 +00:00
2012-08-29 13:43:15 +08:00
2012-11-16 23:19:59 +00:00
2012-06-26 21:23:25 -05:00
2012-05-08 16:30:13 +01:00
2012-06-26 21:23:25 -05:00
2012-05-08 15:21:56 +01:00
2012-05-21 12:52:55 +02: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:

Description
RETIRED, further work has moved to Debian project infrastructure
Readme 1.2 MiB