Python library and client for Redfish support
Go to file
Bruno Cornec f876aa6711 New version of PR #38
- Put back python funny syntax in requirements.txt
- Create a PB macro (for now in all.pbf) to alter the requirements.txt
  to remove the funny python syntax
2016-04-04 19:35:03 +02:00
dmtf Fix most of the comments reported in #22 2016-02-15 18:12:28 +01:00
doc Update documentation 2016-03-07 11:15:32 +01:00
examples Manage python3 compatibility 2016-03-07 11:15:32 +01:00
pbconf New version of PR #38 2016-04-04 19:35:03 +02:00
redfish Fix invalid login using redfish url. 2016-03-20 19:01:51 +01:00
redfish-client Remove containers used by tests 2016-03-08 11:06:07 +01:00
.coveragerc cookie cutter ify this repo, will clean up later 2015-03-25 13:46:58 -07:00
.gitattributes Added Attributes 2015-03-23 12:05:45 -05:00
.gitignore Ignore files produced by tests 2016-03-04 12:02:13 +01:00
.gitreview cookie cutter ify this repo, will clean up later 2015-03-25 13:46:58 -07:00
.mailmap cookie cutter ify this repo, will clean up later 2015-03-25 13:46:58 -07:00
.testr.conf cookie cutter ify this repo, will clean up later 2015-03-25 13:46:58 -07:00
babel.cfg cookie cutter ify this repo, will clean up later 2015-03-25 13:46:58 -07:00
CONTRIBUTING.rst Fix most of the comments reported in #22 2016-02-15 18:12:28 +01:00
HACKING.rst cookie cutter ify this repo, will clean up later 2015-03-25 13:46:58 -07:00
install.sh Fix RPM build for 0.3 2016-04-02 02:03:07 +02:00
LICENSE Add LICENCE file. 2015-12-02 20:54:51 +01:00
MANIFEST.in cookie cutter ify this repo, will clean up later 2015-03-25 13:46:58 -07:00
openstack-common.conf cookie cutter ify this repo, will clean up later 2015-03-25 13:46:58 -07:00
README.rst Update documentation 2016-03-07 11:15:32 +01:00
requirements.txt New version of PR #38 2016-04-04 19:35:03 +02:00
setup.cfg Fix installation of data_files 2016-03-04 12:02:13 +01:00
setup.py Fix setup.py 2016-03-07 21:25:40 +01:00
test-requirements.txt Introduce client testing 2016-03-04 12:02:13 +01:00
tox.ini improve tox.ini with OS conventions 2015-03-28 21:54:23 -07:00

python-redfish

This repository will be used to house the Redfish python library, a reference implementation to enable Python developers to communicate with the Redfish API (http://www.dmtf.org/standards/redfish).

NOTE:

DRAFT - WORK IN PROGRESS

The current Redfish specification revision is 1.0.0 - Note that the mockup
is still at version 0.99.0a and may not reflect what the standard provides
fully

Documentation

The full documentation is available at http://pythonhosted.org/python-redfish/installation.html

Project Structure

This project follows the same convention as OpenStack projects, eg. using pbr for build and test automation:

doc/            # Documentation
doc/source      # The doc source files live here
doc/build/html  # Output of building any docs will go here
dmtf            # Reference documents and mockup provided by the DMTF
examples/       # Any sample code using this library, eg. for education
                # should be put here
pbconf          # Project builder file to build rpm/deb packages for
                # distributions
redfish/        # The redfish library itself
redfish/tests/  # Python redfish unit test suite
redfish-client  # Client tool to manage redfish devices

Requirements

To use the enclosed examples, you will need Python 2.7 or Python 3.4 (https://www.python.org/downloads/). Note that Python 2.7.9 enforces greater SSL verification requiring server certificates be installed. Parameters to relax the requirements are available in the library, but these configurations are discouraged due to security.

Python requirements are listed in requirements.txt; additional requirements for running the unit test suite are listed in test-requirements.txt.

Note: The program was tested with Python 2.7.10 and 3.4.2 however it might work as well with all Python 3 releases.

Get the sources

The sources are available on github and can be retrieved using:

git clone https://github.com/uggla/python-redfish

As python redefish is currently in heavy development we recommend to checkout the devel branch using:

cd python-redfish
git checkout devel

Installation

Please refer to the following link.

http://pythonhosted.org/python-redfish/installation.html

Contacts

Distribution list: python-redfish@mondorescue.org

Further References

Please look at dmtf/README.rst file.