Python client for Container Infrastructure Management Service
Go to file
Hongbin Lu c991639a6b Fix incorrect initialization of OrderedDict
According to the doc[1], initialize OrderedDict as below won't
perserve the order:

  collections.OrderedDict({...})

This causes occasional failures of the tests. This patch changed it
to:

  collections.OrderedDict([...])

[1] https://docs.python.org/3/library/collections.html#
ordereddict-objects

Change-Id: I863f9d2879a6c119501fe1d5175ecb8a70e7e9f1
Closes-Bug: #1556475
2016-03-12 13:45:08 -05:00
doc/source Added project required files. 2014-11-21 08:33:53 +09:00
magnumclient Fix incorrect initialization of OrderedDict 2016-03-12 13:45:08 -05:00
.coveragerc Change ignore-errors to ignore_errors 2015-09-21 14:53:46 +00:00
.gitignore Add .idea directory to .gitignore 2015-12-01 15:38:57 -08:00
.gitreview Update .gitreview for project rename 2015-03-28 00:20:54 +00:00
.mailmap Added project required files. 2014-11-21 08:33:53 +09:00
.testr.conf Added project required files. 2014-11-21 08:33:53 +09:00
CONTRIBUTING.rst Workflow documentation is now in infra-manual 2014-12-05 03:30:46 +00:00
LICENSE Initial commit 2014-11-18 14:38:31 -07:00
README.rst Improve readme contents 2015-11-19 08:28:19 +00:00
babel.cfg Added project required files. 2014-11-21 08:33:53 +09:00
coverage.sh Added project required files. 2014-11-21 08:33:53 +09:00
openstack-common.conf Revert "Completely remove openstack common modules" 2016-03-04 10:34:00 -05:00
requirements.txt Updated from global requirements 2016-02-20 22:00:22 +00:00
setup.cfg Update translation setup 2016-01-28 19:07:17 +01:00
setup.py Updated from global requirements 2015-09-17 12:16:46 +00:00
test-requirements.txt Updated from global requirements 2016-02-04 18:59:47 +00:00
tox.ini Remove bandit.yaml in favor of defaults 2016-03-09 11:47:06 -08:00

README.rst

Python bindings to the Magnum API

Latest Version

Downloads

This is a client library for Magnum built on the Magnum API. It provides a Python API (the magnumclient module) and a command-line tool (magnum).

Development takes place via the usual OpenStack processes as outlined in the developer guide.