--- id: pypowerstore version: "3.5.0.0" license: unclear license_treatment: permissive maintenance: active --- # PyPowerStore — Python Library for Dell PowerStore License: permissive · Maintenance: active · Downloads: 83.6K/mo ## What it is and what it does PyPowerStore wraps the Dell PowerStore REST API in a Python client library, letting you automate storage operations like volume creation, replication rule management, and network configuration from Python code. It's maintained by Dell and officially supports Python 3.10, 3.11, and 3.12. The library organizes operations into logical modules (provisioning, protection, config_mgmt) accessed through a single connection object. You authenticate with PowerStore credentials and IP address, then call methods to create or query storage resources. It depends on requests for HTTP communication and is distributed as a pure-Python wheel, making installation straightforward on any supported Python version. Use it for: - Automate volume provisioning and deletion in PowerStore arrays as part of infrastructure-as-code workflows - Query and manage replication rules and protection policies across multiple PowerStore systems - Integrate PowerStore management into monitoring or orchestration tools that need to configure networks and storage objects - Build custom dashboards or reporting tools that pull configuration and status data from PowerStore - Automate storage capacity planning by querying volume and pool information programmatically ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. PyPowerStore is a Python library for managing Dell PowerStore storage systems, providing provisioning, protection, and configuration management operations through a REST API client. Yes, if you manage Dell PowerStore systems and need Python automation. The library is actively maintained by Dell, has no known vulnerabilities, low install friction, and permissive licensing. It is a straightforward fit for storage automation workflows. Not relevant if you do not use PowerStore. ## Install pip install pypowerstore uv add pypowerstore poetry add pypowerstore ## Installing PyPowerStore Before you install: Low install friction with a pure-Python wheel distribution. Maintained actively with a recent commit on 2026-08-13 and a release 52 days ago. Dependencies are standard and widely available (urllib3, requests, packaging, setuptools). License in practice: Licensed under Apache Software License (permissive), allowing commercial and private use with minimal restrictions. Quickstart: pip install PyPowerStore from PyPowerStore import powerstore_conn conn = powerstore_conn.PowerStoreConn('user', 'password', 'IP', False) volume = conn.provisioning.create_volume(name='foo', size=1073741824) rules = conn.protection.get_replication_rules() Requires network connectivity to a Dell PowerStore appliance; credentials and IP address must be provided at connection time. Verify before relying: - Whether the library supports PowerStore versions beyond those tested internally by Dell - Performance characteristics and rate limits when managing large numbers of storage objects - Whether all PowerStore REST API endpoints are covered or if some require direct HTTP calls - Specific network connectivity requirements and timeout behavior for remote PowerStore systems ## Package facts - License: not declared (permissive) - Python support: unspecified - Install friction: low - Maintenance: active - Downloads: 83.6K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags dell powerstore python client, storage management api library, powerstore provisioning automation, dell storage python sdk, powerstore rest api wrapper, storage system management library, storage-management, dell-powerstore, infrastructure-automation [View on SkillFed](https://skillfed.io/packages/pypowerstore) · [View on PyPI](https://pypi.org/project/pypowerstore/)