Automate software installation and configuration across a fleet of Linux servers without installing agent software.
Run the same shell command on dozens of servers at once from your local machine.
Write Python scripts that keep your servers or Docker containers in a consistent, repeatable state.
| pyinfra-dev/pyinfra | ramon-victor/freegpt-webui | nekoparapa/ainiee | |
|---|---|---|---|
| Stars | 5,644 | 5,643 | 5,646 |
| Language | Python | Python | Python |
| Setup difficulty | moderate | easy | easy |
| Complexity | 3/5 | 2/5 | 2/5 |
| Audience | ops devops | developer | general |
Figures from each repo's GitHub metadata at analysis time.
Requires SSH access to target servers and Python on your local machine.
Pyinfra is a Python tool for automating server configuration and deployment tasks. Instead of writing configuration files in a special format or learning a new language, you write plain Python scripts that describe what your servers should look like. Pyinfra then translates those Python instructions into the actual shell commands needed to make each server match your specifications. The tool connects to servers over SSH by default, so you do not need to install any agent software on the machines you are managing. It also works on your local machine and inside Docker containers, which makes it possible to test infrastructure changes in a safe environment before applying them to production servers. Pyinfra supports two main workflows. In the first, you can run ad-hoc commands across many servers at once, similar to running a shell command on one machine but doing it on dozens or hundreds at the same time. In the second, you write declarative operation files that describe the desired state of your servers: which packages should be installed, which files should exist, which services should be running. Pyinfra figures out the steps needed to reach that state and runs them. The project is described as high performance and built to scale from a single server up to thousands. Because it uses Python, you can bring in the full Python ecosystem to add logic to your infrastructure code, such as loops, conditionals, reading configuration from files, or connecting to external APIs. No README is included in the repository root, so this description is based on the project metadata. The official documentation and usage examples live on the project's external documentation site.
A Python tool that automates server setup by running shell commands over SSH. Write Python scripts describing what your servers should look like, and pyinfra applies the changes.
Mainly Python. The stack also includes Python, SSH, Docker.
No license information is available from the sources provided.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly ops devops.
This repo across BitVibe Labs
Verify against the repo before relying on details.