# PyRunbookManager
Easily install PIP dependencies in your azure runbook at runtime.
# Setup
- Download the .whl build from the [PyPI project page](https://pypi.org/project/PyRunbookManager/)
- Add it as a module in your runtime environment
# Usage
To install additional modules, you must first import PyRunbookManager.
```python
from PyRunbookManager import modulemanager
```
## Installing a module
```python
from PyRunbookManager import modulemanager
modulemanager.install("requests")
import requests
```
## installing a list of modules
```python
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.
Raw data
{
"_id": null,
"home_page": null,
"name": "PyRunbookManager",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "python, azure, automation, runbooks, pip, dependencies",
"author": "ikbendion (dblonk)",
"author_email": "<contact@ikbendion.nl>",
"download_url": "https://files.pythonhosted.org/packages/bd/8c/c7e66d65d8f2135580c0f37c5a413848baf7fab74dd1d7e0b41aee56efa6/PyRunbookManager-0.0.2.tar.gz",
"platform": null,
"description": "# PyRunbookManager\nEasily install PIP dependencies in your azure runbook at runtime.\n# Setup\n- Download the .whl build from the [PyPI project page](https://pypi.org/project/PyRunbookManager/)\n- Add it as a module in your runtime environment\n# Usage\nTo install additional modules, you must first import PyRunbookManager.\n```python\nfrom PyRunbookManager import modulemanager\n```\n## Installing a module\n```python\nfrom PyRunbookManager import modulemanager\nmodulemanager.install(\"requests\")\nimport requests\n```\n## installing a list of modules\n```python\nfrom PyRunbookManager import modulemanager\ndependencies = ['requests','os']\nfor module in dependencies:\n modulemanager.install(module)\n\nimport os\nimport requests\n```\n## Contributing\nContributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.\n\n## License\nThis project is licensed under the MIT License.\n\n## Contact\nFor any questions or inquiries, please open an issue.\n\n## Disclaimer\nI am not responsible for any damage and/or misuse as a result of using this lib.\n\n\n",
"bugtrack_url": null,
"license": "Apache 2.0",
"summary": "Easily install modules in azure automation runbooks.",
"version": "0.0.2",
"project_urls": {
"Source": "https://github.com/ikbendion/PyRunbookManager"
},
"split_keywords": [
"python",
" azure",
" automation",
" runbooks",
" pip",
" dependencies"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f6bb82e29ac1ff8ba8f3e3e6d66265e547f1b1340c239c2ff412cb220c57fee9",
"md5": "0ca39d025f018b91764651397962da88",
"sha256": "e7dbcfc5c2b4f31ceb5c48058edb8b43fdc20f47cbb5163b93bf80c3f98275ce"
},
"downloads": -1,
"filename": "PyRunbookManager-0.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0ca39d025f018b91764651397962da88",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 6579,
"upload_time": "2024-11-28T20:36:28",
"upload_time_iso_8601": "2024-11-28T20:36:28.780060Z",
"url": "https://files.pythonhosted.org/packages/f6/bb/82e29ac1ff8ba8f3e3e6d66265e547f1b1340c239c2ff412cb220c57fee9/PyRunbookManager-0.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd8cc7e66d65d8f2135580c0f37c5a413848baf7fab74dd1d7e0b41aee56efa6",
"md5": "2c41b38f320cf9b5c37fc916499c694a",
"sha256": "c695b0e6b14b9c92b2f990d3cf65992951667a8054d64c7e6a116dd7cd532195"
},
"downloads": -1,
"filename": "PyRunbookManager-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "2c41b38f320cf9b5c37fc916499c694a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6198,
"upload_time": "2024-11-28T20:36:31",
"upload_time_iso_8601": "2024-11-28T20:36:31.168476Z",
"url": "https://files.pythonhosted.org/packages/bd/8c/c7e66d65d8f2135580c0f37c5a413848baf7fab74dd1d7e0b41aee56efa6/PyRunbookManager-0.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-28 20:36:31",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ikbendion",
"github_project": "PyRunbookManager",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pyrunbookmanager"
}