py-dss-interface is a Python package to control OpenDSS Powered by EPRI โ the official EPRI-maintained distribution of OpenDSS โ using the Python programming language. It is designed to work with OpenDSS Powered by EPRI only. This tool is actively used across multiple EPRI research projects and by utilities and consultants, and it also serves as a foundation for automated testing workflows for OpenDSS.
Use the full power of Python to control and automate your OpenDSS workflows:
- โ๏ธ Automate repetitive OpenDSS tasks.
- ๐ง Manipulate circuit, element, and bus properties with Python logic.
- ๐ Extract simulation results and generate custom reports.
- ๐งฎ Implement advanced analysis and algorithms using Python.
Compared to the COM interface, py-dss-interface provides a modern, Pythonic experience:
- ๐ก Code Completion: Works seamlessly with IDEs like PyCharm for better developer productivity.
- ๐ฆ No OpenDSS Installation Required: No need to install OpenDSS since
py-dss-interfacecomes bundled with a tested version of OpenDSS (Windows and Linux). However, you may also use a different OpenDSS version if desired. Please note that compatibility is only guaranteed for the bundled version. - ๐ Supports Multiple DSS Objects: Interact with multiple OpenDSS objects at the same time.
- ๐ Multi-Platform: Supports both Windows and Linux (pre-built wheels available; build from source if needed).
- โก Better Performance: Some examples comparing performance will be provided later.
- ๐ Version Control Friendly: Avoid breaking your Python code when updating the OpenDSS version on your computer.
pip install py-dss-interfacePre-built wheels are available for x86_64 and ARM64. Start with pip install:
pip install py-dss-interfaceIf pip install doesn't work for your environment, you can build from source as described below.
To use py-dss-interface on Linux, you'll need to build the OpenDSS C++ engine locally using OpenDSSLinuxCPPForRepo.sh.
-
Clone the repository
git clone https://github.com/PauloRadatz/py_dss_interface.git cd py_dss_interface -
Build the OpenDSS C++ engine
bash py_dss_interface/OpenDSSLinuxCPPForRepo.sh
๐ Note: You'll need tools for building C++ code (e.g.,
g++,cmake, etc.). -
Install the package
pip install path/to/py_dss_interface
import py_dss_interface
dss = py_dss_interface.DSS()
dss.text("compile path/to/circuit.dss")
dss.text("solve")
print(dss.circuit.total_power)The project includes a comprehensive test suite using pytest. Tests can be run individually or together depending on your platform and backend.
# Run all tests
pytest tests/On Linux or when using the C++ backend on Windows, tests automatically run individually in separate subprocesses to prevent memory leak issues. This is handled automatically by the test framework.
To run all tests together (faster execution, but may have memory issues if there are leaks), use the --run-together flag:
# Run all tests together (even on Linux/C++)
pytest tests/ --run-togetherNote: Use --run-together when you want to test memory management fixes or need faster test execution. Individual execution is recommended for normal testing to prevent memory leaks.
When tests run individually, a detailed summary is displayed at the end showing:
- Total tests executed
- Passed/Failed/Error counts
- List of failed tests (if any)
- Execution time
๐ Full documentation available at: ๐ https://py-dss-interface.readthedocs.io/en/latest/
The best way to master py-dss-interface is through the official course:
๐ Try the first modules for free
- ๐ Why Use Python with OpenDSS
- ๐ py-dss-interface Version 2 Overview
- ๐ Version 1 Introduction
-
๐ OpenDER_Interface: EPRI's tool for Distributed Energy Resource simulation and control, powered by
py-dss-interface. More on OpenDER: GitHub -
๐ 2023 Hosting Capacity Webinar: Examples shown using this package.
-
๐ง py-dss-toolkit: A new package built on top of
py-dss-interface, available in PyPI.
- ๐ OpenDSS Repository
- ๐ Local Installation:
After installing OpenDSS on your Windows computer, navigate to:
C:\\Program Files\\OpenDSS\\Examples\\Python\\py-dss-interface
- ๐ฌ Open an Issue on GitHub for bugs or feature requests.
- ๐ Contributions welcome! Please open a pull request with clear descriptions.
- ๐ป Questions? Join discussions in the OpenDSS user forums or comment on relevant YouTube videos.
If you use py-dss-interface in your academic work, please reference it as follows:
APA Style:
Radatz, P. (2026). py-dss-interface: A Python package that interfaces with OpenDSS powered by EPRI (Version 2.3.0) [Computer software]. GitHub. https://github.com/PauloRadatz/py_dss_interface
BibTeX Entry:
@software{radatz2026pydssinterface,
author = {Paulo Radatz},
title = {py-dss-interface: A Python package that interfaces with OpenDSS powered by EPRI},
year = {2026},
version = {2.3.0},
url = {https://github.com/PauloRadatz/py_dss_interface}
}Developed and maintained by Paulo Radatz, with support from EPRI and the global OpenDSS community.
Special thanks to รnio Viana and Rodolfo Pilar Londero for their contributions to the first version of this tool.