Easily install PIP dependencies in your azure runbook at runtime.
- Download the .whl build from the PyPI project page
- Add it as a module in your runtime environment
To install additional modules, you must first import PyRunbookManager.
from PyRunbookManager import modulemanagerfrom PyRunbookManager import modulemanager
modulemanager.install("requests")
import requestsfrom PyRunbookManager import modulemanager
dependencies = ['requests','os']
for module in dependencies:
modulemanager.install(module)
import os
import requestsContributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.
This project is licensed under the MIT License.
For any questions or inquiries, please open an issue.
I am not responsible for any damage and/or misuse as a result of using this lib.