PyPowerStore is a python library which lets you manage Dell PowerStore.
pip install PyPowerStore==<pypowerstore_version>
'pypowerstore_version' needs to be replaced with actual version.
i) go to the root of the project where setup.py file is present, and execute:
pip install .
The examples for the library are available under 'ProgrammersGuideExamples' folder.
from PyPowerStore import powerstore_conn
conn = powerstore_conn.PowerStoreConn('user',
'password',
'IP',
False)
volume_create = conn.provisioning.create_volume(name='foo',
size=1073741824)
all_replication_rules = conn.protection.get_replication_rules()
all_networks = conn.config_mgmt.get_networks()
The library docs are available under 'docs' folder.
This library uses python's "requests" library.
PyPowerStore officially supports Python 3.10, 3.11 and 3.12.
PyPowerStore is supported by Dell and is provided under the terms of the license attached to the source code. For any setup, configuration issues, questions or feedback, join the Dell Automation community. For any Dell storage issues, please contact Dell support at: https://www.dell.com/support. For clarity, Dell does not provide support for any source code modifications.