Metadata-Version: 2.1
Name: proliantutils
Version: 2.9.4
Summary: Client Library for interfacing with various devices in HP Proliant Servers.
Home-page: https://github.com/openstack/proliantutils
Author: Hewlett Packard Enterprise
Author-email: proliantutils@gmail.com
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: pbr (>=2.0.0)
Requires-Dist: six (>=1.9.0)
Requires-Dist: oslo.concurrency (>=3.8.0)
Requires-Dist: oslo.serialization (>=1.10.0)
Requires-Dist: oslo.utils (>=3.20.0)
Requires-Dist: jsonschema (>=2.6.0)
Requires-Dist: requests (!=2.12.2,!=2.13.0,>=2.10.0)
Requires-Dist: retrying (!=1.3.0,>=1.2.3)
Requires-Dist: pysnmp (<5.0.0,>=4.2.3)
Requires-Dist: sushy (>=3.1.0)

proliantutils
=============

**proliantutils** is a set of utility libraries for interfacing and managing
various components (like iLO, HPSSA) for HPE Proliant Servers.  This library
is used by iLO drivers in Ironic for managing Proliant Servers (though the
library can be used by anyone who wants to manage HPE Proliant servers).

Please use launchpad_ to report bugs and ask questions.

.. _launchpad: https://bugs.launchpad.net/proliantutils

Installation
------------

Install the module from PyPI_.  If you are using Ironic, install the module
on Ironic conductor node::

  pip install proliantutils

.. _PyPI: https://pypi.python.org/pypi/proliantutils

Some GNU/Linux distributions provide *python-proliantutils* package.

Usage
-----

iLO
~~~

For interfacing with the iLO, use *IloClient* object::

  >>> from proliantutils.ilo import client
  >>> ilo_client = client.IloClient('10.10.1.57', 'Administrator', 'password')
  >>> ilo_client.get_host_power_status()
  'OFF'
  >>>

For operations supported on the client object, please refer
*proliantutils.ilo.operations*.



