MCPcopy Index your code
hub / github.com/pyinfra-dev/pyinfra

github.com/pyinfra-dev/pyinfra @v3.9.2 sqlite

repository ↗ · DeepWiki ↗ · release v3.9.2 ↗
2,295 symbols 9,919 edges 240 files 631 documented · 27%
README
<a href="https://pyinfra.com">
    <img src="https://pyinfra.com/static/logo_readme.png" alt="pyinfra" />
</a>







pyinfra turns Python code into shell commands and runs them on your servers. Execute ad-hoc commands and write declarative operations. Target SSH servers, local machine and Docker containers. Fast and scales from one server to thousands. Think <code>ansible</code> but Python instead of YAML, and a lot faster.

Getting StartedExamples RepoChat on Matrix

<a href="https://docs.pyinfra.com"><strong>Documentation</strong></a> &bull;
<a href="https://docs.pyinfra.com/page/support.html"><strong>Help & Support</strong></a> &bull;
<a href="https://docs.pyinfra.com/page/contributing.html"><strong>Contributing</strong></a>

Why pyinfra? Design features include:

  • 🚀 Super fast execution over thousands of hosts with predictable performance.
  • 🚨 Instant debugging with realtime stdin/stdout/stderr output (-vvv).
  • 🔄 Idempotent operations that enable diffs and dry runs before making changes.
  • 📦 Extendable with the entire Python package ecosystem.
  • 💻 Agentless execution against anything with shell access.
  • 🔌 Integrated with connectors for Docker, Terraform, Vagrant and more.

Quickstart

Install pyinfra with uv:

uv tool install pyinfra

Now you can execute commands on hosts via SSH:

pyinfra my-server.net exec -- echo "hello world"

Or target Docker containers, the local machine, and other connectors:

pyinfra @docker/ubuntu exec -- echo "Hello world"
pyinfra @local exec -- echo "Hello world"

As well as executing commands you can define state using operations:

# Install iftop apt package if not present
pyinfra @docker/ubuntu apt.packages iftop update=true _sudo=true

Which can then be saved as a Python file like deploy.py:

from pyinfra.operations import apt

apt.packages(
    name="Ensure iftop is installed",
    packages=['iftop'],
    update=True,
    _sudo=True,
)

The hosts can also be saved in a file, for example inventory.py:

targets = ["@docker/ubuntu", "my-test-server.net"]

And executed together:

pyinfra inventory.py deploy.py

Now you know the building blocks of pyinfra! By combining inventory, operations and Python code you can deploy anything.

See the more detailed getting started or using operations guides. See how to use inventory & data, global arguments and the CLI or check out the documented examples.


<a href="https://pypi.python.org/pypi/pyinfra"><img alt="PyPI version" src="https://img.shields.io/pypi/v/pyinfra?color=blue"></a>
<a href="https://pepy.tech/project/pyinfra"><img alt="PyPi downloads" src="https://pepy.tech/badge/pyinfra"></a>
<a href="https://docs.pyinfra.com"><img alt="Docs status" src="https://img.shields.io/github/actions/workflow/status/Fizzadar/pyinfra/docs.yml?branch=2.x"></a>
<a href="https://github.com/Fizzadar/pyinfra/actions?query=workflow%3A%22Execute+tests%22"><img alt="Execute tests status" src="https://img.shields.io/github/actions/workflow/status/Fizzadar/pyinfra/test.yml?branch=2.x"></a>
<a href="https://codecov.io/github/Fizzadar/pyinfra"><img alt="Codecov Coverage" src="https://img.shields.io/codecov/c/gh/Fizzadar/pyinfra"></a>
<a href="https://github.com/Fizzadar/pyinfra/blob/2.x/LICENSE.md"><img alt="MIT Licensed" src="https://img.shields.io/pypi/l/pyinfra"></a>

Core symbols most depended-on inside this repo

get_fact
called by 231
src/pyinfra/api/host.py
make_inventory
called by 151
tests/util.py
get_host
called by 142
src/pyinfra/api/inventory.py
noop
called by 118
src/pyinfra/api/host.py
get
called by 103
src/pyinfra/api/host.py
items
called by 90
src/pyinfra/facts/apt.py
connect_all
called by 69
src/pyinfra/api/connect.py
set
called by 60
src/pyinfra/operations/vzctl.py

Shape

Method 1,243
Function 585
Class 403
Route 64

Languages

Python100%

Modules by API surface

src/pyinfra/facts/server.py122 symbols
tests/test_operations_utils.py69 symbols
tests/test_connectors/test_ssh.py67 symbols
tests/test_api/test_api_operations.py61 symbols
src/pyinfra/facts/docker.py60 symbols
tests/util.py58 symbols
tests/test_connectors/test_util.py49 symbols
src/pyinfra/facts/files.py40 symbols
tests/test_connectors/test_dockerssh.py38 symbols
src/pyinfra/api/host.py37 symbols
src/pyinfra/api/state.py36 symbols
src/pyinfra/api/operation.py35 symbols

Dependencies from manifests, versioned

gevent1.5 · 1×
packaging16.1 · 1×

For agents

$ claude mcp add pyinfra \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact