Skip to content

ikbendion/PyRunbookManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyRunbookManager

Easily install PIP dependencies in your azure runbook at runtime.

Setup

  • Download the .whl build from the PyPI project page
  • Add it as a module in your runtime environment

Usage

To install additional modules, you must first import PyRunbookManager.

from PyRunbookManager import modulemanager

Installing a module

from PyRunbookManager import modulemanager
modulemanager.install("requests")
import requests

installing a list of modules

from PyRunbookManager import modulemanager
dependencies = ['requests','os']
for module in dependencies:
    modulemanager.install(module)

import os
import requests

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.

License

This project is licensed under the MIT License.

Contact

For any questions or inquiries, please open an issue.

Disclaimer

I am not responsible for any damage and/or misuse as a result of using this lib.

About

Install modules during a azure runbook job with ease.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages