RETIRED, Client library to Solum API. See: https://wiki.openstack.org/wiki/Solum
Go to file
Hervé Beraud 80e0481b9d Stop to use the __future__ module.
The __future__ module [1] was used in this context to ensure compatibility
between python 2 and python 3.

We previously dropped the support of python 2.7 [2] and now we only support
python 3 so we don't need to continue to use this module and the imports
listed below.

Imports commonly used and their related PEPs:
- `division` is related to PEP 238 [3]
- `print_function` is related to PEP 3105 [4]
- `unicode_literals` is related to PEP 3112 [5]
- `with_statement` is related to PEP 343 [6]
- `absolute_import` is related to PEP 328 [7]

[1] https://docs.python.org/3/library/__future__.html
[2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html
[3] https://www.python.org/dev/peps/pep-0238
[4] https://www.python.org/dev/peps/pep-3105
[5] https://www.python.org/dev/peps/pep-3112
[6] https://www.python.org/dev/peps/pep-0343
[7] https://www.python.org/dev/peps/pep-0328

Change-Id: If49eb84a883f7a9cd3719953d43c7531bb99fc79
2020-06-02 20:52:11 +02:00
contrib/setup-tools Remove the openstack/common/cliutils.py to common/cliutils.py 2016-10-19 20:39:18 +08:00
doc Switch to newer openstackdocstheme and reno versions 2020-05-22 17:16:53 +00:00
releasenotes/notes Drop python 2.7 support and testing 2019-12-13 23:45:02 +00:00
solumclient Stop to use the __future__ module. 2020-06-02 20:52:11 +02:00
.coveragerc Remove the openstack-common.conf and dirs in solumclient 2016-11-01 14:07:59 +00:00
.gitignore Switch to stestr 2018-09-11 02:13:44 +00:00
.gitreview OpenDev Migration Patch 2019-04-19 19:29:18 +00:00
.mailmap Initial commit created using OpenStack cookiecutter template 2013-11-15 07:44:17 +05:30
.stestr.conf Switch to stestr 2018-09-11 02:13:44 +00:00
.zuul.yaml Add Python3 victoria unit tests 2020-04-12 22:54:45 -07:00
CONTRIBUTING.rst Update the documentation link for doc migration 2017-07-24 13:39:59 +08:00
HACKING.rst Update the documentation link for doc migration 2017-07-24 13:39:59 +08:00
LICENSE Initial commit created using OpenStack cookiecutter template 2013-11-15 07:44:17 +05:30
README.rst Update links in README 2018-03-11 03:16:11 +08:00
babel.cfg Initial commit created using OpenStack cookiecutter template 2013-11-15 07:44:17 +05:30
lower-constraints.txt Cap jsonschema 3.2.0 as the minimal version 2020-05-26 22:11:24 +02:00
requirements.txt Cap jsonschema 3.2.0 as the minimal version 2020-05-26 22:11:24 +02:00
setup.cfg Add py38 package metadata 2020-04-24 08:23:19 -05:00
setup.py Cleanup py27 support 2020-04-04 17:14:52 +02:00
test-requirements.txt Fix hacking min version to 3.0.1 2020-05-12 21:12:13 -05:00
tox.ini Bump default tox env from py37 to py38 2020-04-24 10:25:58 -05:00

README.rst

Team and repository tags

image

Python bindings to the Solum API

This is a client library for Solum built on the Solum API.

Installation

At the command line:

$ pip install python-solumclient

Or, if you have virtualenvwrapper installed:

$ mkvirtualenv python-solumclient
$ pip install python-solumclient

Usage

To use python-solumclient in a project:

import solumclient