Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dell/python-powerstore
Python library for Dell PowerStore
https://github.com/dell/python-powerstore
ansible dell powerstore python sdk storage
Last synced: about 19 hours ago
JSON representation
Python library for Dell PowerStore
- Host: GitHub
- URL: https://github.com/dell/python-powerstore
- Owner: dell
- License: apache-2.0
- Created: 2020-05-06T11:30:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-16T07:42:40.000Z (9 days ago)
- Last Synced: 2025-01-16T22:09:48.561Z (8 days ago)
- Topics: ansible, dell, powerstore, python, sdk, storage
- Language: Python
- Homepage:
- Size: 893 KB
- Stars: 17
- Watchers: 9
- Forks: 12
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README
# PyPowerStore
PyPowerStore is a python library which lets you manage Dell PowerStore.## Installation
### PyPowerStore can be installed from pypi.org using below mentioned command:
pip install PyPowerStore=='pypowerstore_version' needs to be replaced with actual version.
### PyPowerStore can be installed from the source code in github using below mentioned steps:
i) go to the root of the project where setup.py file is present, and execute:pip install .
## Examples
The examples for the library are available under 'ProgrammersGuideExamples' folder.
```
from PyPowerStore import powerstore_connconn = 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()```
## Documentation
The library docs are available under 'docs' folder.
## Requirements
This library uses python's "requests" library.
PyPowerStore officially supports Python 3.10, 3.11 and 3.12.
## Support
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](https://www.dell.com/community/Automation/bd-p/Automation).
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.