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 import Unraid
# Create Unraid server object
unraid = Unraid('192.168.1.4', 'root', 'your-secure-password')
# Get all Docker containers
containers = unraid.containers()
Full documentation is available at https://pyunraid.simse.io/docs. The documentation is autogenerated supplimented with human written content
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.