Skip to main content

Custom version for developing pyinfra

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 automates infrastructure using Python. It’s fast and scales from one server to thousands. Great for ad-hoc command execution, service deployment, configuration management and more.


DocumentationGetting StartedExamplesHelp & SupportContributing

Chat ⇒ #pyinfra on Matrix


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


Download files

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

Source Distribution

pyinfra_forked_by_stone-w4tch3r-0.3.2.tar.gz (184.5 kB view details)

Uploaded Source

Built Distribution

pyinfra_forked_by_stone_w4tch3r-0.3.2-py2.py3-none-any.whl (240.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pyinfra_forked_by_stone-w4tch3r-0.3.2.tar.gz.

File metadata

File hashes

Hashes for pyinfra_forked_by_stone-w4tch3r-0.3.2.tar.gz
Algorithm Hash digest
SHA256 63711f762cbd7c03f56ad39e84afe036f0546603a2a257c06b01e973525254b0
MD5 f37b8f76225a22b0b488d94b9a41b17d
BLAKE2b-256 9c37eb69d0ea1a700fc7a31ea094882716901bff79cbee80dad54c1508f65ea1

See more details on using hashes here.

File details

Details for the file pyinfra_forked_by_stone_w4tch3r-0.3.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pyinfra_forked_by_stone_w4tch3r-0.3.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 68c37943d5dcb742e7b8f4c8331cf2e413b0e2af0410028fe32bb1d0cf7f8643
MD5 07237a2beefd48c547bdbdbf66021c0e
BLAKE2b-256 32b5a424671dc3d20f528fa17a198fb14b271bbb14301778c90e00ce95bcb3e6

See more details on using hashes here.

Supported by

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