Skip to main content

pyinfra automates/provisions/manages/deploys infrastructure.

Project description

pyinfra

Note: this is the v3 branch, which is currently in beta. See the docs for v3. If needed the 2.x branch is here, but is in bugfix only mode.

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 ansible but Python instead of YAML, and a lot faster.


Getting StartedExamples RepoChat on Matrix

DocumentationHelp & SupportContributing


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 pip:

pip 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.


PyPI version PyPi downloads Docs status Execute tests status Codecov Coverage MIT Licensed

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyinfra-3.0b2.tar.gz (187.1 kB view details)

Uploaded Source

Built Distribution

pyinfra-3.0b2-py2.py3-none-any.whl (243.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pyinfra-3.0b2.tar.gz.

File metadata

  • Download URL: pyinfra-3.0b2.tar.gz
  • Upload date:
  • Size: 187.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyinfra-3.0b2.tar.gz
Algorithm Hash digest
SHA256 b09c6a4087d5f45434fb17866276e206b55fcc5cb5df1c9be0b261dab2ce4e82
MD5 d0bf03368e658e617e9c1f03a9e68df2
BLAKE2b-256 a125795fee304758367baecc17120b62c5b84760e1c3891fd6e5344a6f65bafb

See more details on using hashes here.

File details

Details for the file pyinfra-3.0b2-py2.py3-none-any.whl.

File metadata

  • Download URL: pyinfra-3.0b2-py2.py3-none-any.whl
  • Upload date:
  • Size: 243.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyinfra-3.0b2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 406969d33ae239c0b796619b38fcee35a448b03ee984838e933840d3b109130d
MD5 9428efc4911513aa342b68139c7a12d4
BLAKE2b-256 36fba804c6b012dadaa3e983ae8057b2ea484c249ddc45d9ce5a109f4498b200

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page