python library that allows a simple way to use Rest API services for HPE storage and disk backup devices
Project description
hpestorapi
Package description
hpestorapi is a python library that allows a simple way to use Rest API services for HPE storage and disk backup devices. Current version supports:
HPE 3PAR StoreServ disk arrays
HPE Primera disk arrays
HPE XP7 and P9500 (Command View AE Configuration manager is required)
HPE StoreOnce G3 disk backup device
HPE StoreOnce G4 disk backup device
Installation
Requirements
hpestorapi library requires:
CPython 3.6+ or PyPy3 interpreter
Python requests library
Installation from PyPI
To download and install hpestorapi you can use pip:
# pip install hpestorapi
Installation from GitHub
Get a copy of source code
# git clone https://github.com/HewlettPackard/python-storage-clients.git # cd python-storage-clients
Install the package with dependencies:
# python setup.py install
Import hpestorapi library to your python script:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import hpestorapi
Usage example
from hpestorapi import StoreServ
with StoreServ('10.0.0.1', '3paruser', '3parpass') as array:
array.open()
status, data = array.get('system')
if status == 200:
print('Name=%s' % data["name"],
'SerialNumber=%s' % data["serialNumber"],
'Address=%s' % data["IPv4Addr"]
)
Documentation
The latest version of the documentation can be found here: html
Issues
If you encounter any problems, please open an issue along with a detailed description. Your questions are welcomed in gitter chat.
Package Version Numbers
This project follows Semantic Versioning.
Unit Tests
You should install docker prior to running tests. To run all unit tests:
# pip install -r requirements/development.txt # docker build -t storeserv test/storeserv # docker build -t storeonce3 test/storeonce3 # tox
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file hpestorapi-1.0.0.tar.gz
.
File metadata
- Download URL: hpestorapi-1.0.0.tar.gz
- Upload date:
- Size: 25.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83ae502f5a6b42fe5be36c83eef7a540e9c8a4fbb40be90722498f8dfe76c8d2 |
|
MD5 | e05b18b70bc6444d52749be7de91441f |
|
BLAKE2b-256 | ccd89fe6c347f6f2dbfa5aed45e7e6b859c87181dea559c3c0936b5c184a8385 |
File details
Details for the file hpestorapi-1.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: hpestorapi-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 28.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1fd37566b94a881e94a9333800f6cbcaf97c5f012fe91de958f16c16ebd6702 |
|
MD5 | beb27bbbba3839c5e4c837e496dd9fe0 |
|
BLAKE2b-256 | aef9e94bcdf72f4b71e57222aad377aec2b68a3f3ebdee3a44230659b365099a |