Pyunraid is a Python library designed to interface directly with an Unraid server without installing any software on directly on the server.
Use the package manager pip to install pyunraid.
pip install pyunraid
from pyunraid.unraid import Unraid
# Create Unraid server object
unraid = Unraid('192.168.1.4', 'root', 'your-secure-password')
# Get all Docker containers
containers = unraid.containers()
Since the project is still in its early stages, there may not be documentation for everything. You may find the documentation on the wiki.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.