{"id":41208106,"url":"https://github.com/vdmitriyev/pymultissher","last_synced_at":"2026-01-22T22:32:59.991Z","repository":{"id":248538816,"uuid":"827438534","full_name":"vdmitriyev/pymultissher","owner":"vdmitriyev","description":"pymultissher is a simple CLI tool that runs commands on multiple servers over SSH","archived":false,"fork":false,"pushed_at":"2025-11-02T18:05:14.000Z","size":191,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-02T19:13:15.850Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vdmitriyev.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-11T16:41:16.000Z","updated_at":"2025-11-02T18:04:35.000Z","dependencies_parsed_at":"2025-05-12T12:30:59.620Z","dependency_job_id":"fbf6f2b4-7ee4-4eb5-8537-f8a291a677f3","html_url":"https://github.com/vdmitriyev/pymultissher","commit_stats":null,"previous_names":["vdmitriyev/pymultissher"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/vdmitriyev/pymultissher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdmitriyev%2Fpymultissher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdmitriyev%2Fpymultissher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdmitriyev%2Fpymultissher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdmitriyev%2Fpymultissher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vdmitriyev","download_url":"https://codeload.github.com/vdmitriyev/pymultissher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdmitriyev%2Fpymultissher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28673277,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T20:48:19.482Z","status":"ssl_error","status_checked_at":"2026-01-22T20:48:14.968Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-22T22:32:59.440Z","updated_at":"2026-01-22T22:32:59.984Z","avatar_url":"https://github.com/vdmitriyev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## About\n\npymultissher is a simple CLI tool that runs commands on multiple servers over SSH.\n\n## Why \"yet another\" SSH tool?\n\nThere is already endless number of tools and utilities, which are able to run commands on a cluster of servers over SSH (e.g., [ansible](https://github.com/ansible/ansible), [fabric](https://github.com/fabric/fabric), [paramiko](https://github.com/paramiko/paramiko), `you-name-it`). However, from time to time you just need a simple and straightforward CLI tool, which take a list of domains and runs a list of command on them over SSH and aggregates output. This is exactly what [pymultissher](https://github.com/vdmitriyev/pymultissher) is trying to accomplish.\n\nP.S. SSH heavy-lifting is done by [Paramiko](https://www.paramiko.org/)\n\n## How it works?\n\nThe utility relies on two YAML configuration files to control its operations:\n\n* `domains.yml`: This file defines default SSH values and domain names. Each domain can have its own set of SSH parameters.\n* `commands.yml`: This file specifies the commands to be executed over SSH connections.\n\nYou can generate these initial configuration files using the `init` argument.\nThe utility also allows using custom YAML configuration files to store domain information and commands.\n\n## Getting Started\n\n* Install (TestPyPI)\n    ```\n    pip install --index-url https://test.pypi.org/simple/ --upgrade pymultissher\n    ```\n* Generate initial configuration files\n    ```\n    pymultissher init\n    ```\n* Edit YAML configuration files according to needs\n* List available CLI parameters\n    ```\n    pymultissher --help\n    ```\n* Running with `--dry-run` option, which will not executed any commands over SSH\n    ```\n    pymultissher run-command --command \"whoiam\" --dry-run\n    ```\n* Utility could also be started as a Python module. Here is an example:\n    ```\n    python -m pymultissher --help\n    ```\n\n\n## Usage: CLI\n\nOutput of the CLI command:\n```\npymultissher --help\n```\n\n![](https://raw.githubusercontent.com/vdmitriyev/pymultissher/main/docs/images/cli-image.png)\n\nN.B. CLI could be also run as a Python module: ```python -m pymultissher --help```\n\n## Documentation\n\n[Documentation](https://vdmitriyev.github.io/pymultissher/)\n\n## Contributing\n\nPlease, check [CONTRIBUTING.rst](https://github.com/vdmitriyev/pymultissher/blob/main/CONTRIBUTING.rst)\n\n## License\n\n[MIT](https://github.com/vdmitriyev/pymultissher/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvdmitriyev%2Fpymultissher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvdmitriyev%2Fpymultissher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvdmitriyev%2Fpymultissher/lists"}