1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
.. raw:: html
<div style="float:right; margin:1em; padding: 1em 2em 1em 2em; background-color: #efefef;
border-radius: 5px; border-width: thin; border-style: dotted; border-color: #0C3762;">
<strong>Quick Links</strong><br/>
<ul>
<li><a href="#requirements" title="Jump to download">Download</a></li>
<li><a href="#user-guide" title="Jump to user guide">User Guide</a></li>
<li><a href="#api-reference" title="Jump to API reference">API Reference</a></li>
<li><a href="#about" title="Jump to user guide">About</a></li>
</ul>
<hr/>
<a href="https://tomerfiliba.com" target="_blank">
<img style="display: block; margin-left: auto; margin-right: auto" alt="Tomer Filiba"
src="_static/fish-text-black.png" title="Tomer's Blog"/>
<span style="color:transparent;position: absolute;font-size:5px;width: 0px;height: 0px;">Tomer Filiba</span></a>
<br/>
<a href="https://github.com/tomerfiliba/plumbum" target="_blank">
<img style="display: block; margin-left: auto; margin-right: auto; opacity: 0.7; width: 70px;"
src="_static/github-logo.png" title="Github Repo"/></a>
<br/>
<a alt="Build Status" href="https://github.com/tomerfiliba/plumbum/actions" target="_blank">
<img src="https://github.com/tomerfiliba/plumbum/workflows/CI/badge.svg"
style="display: block; margin-left: auto; margin-right: auto;" title="Travis CI status"></a>
</div>
Plumbum: Shell Combinators and More
===================================
.. comment raw:: html
<div style="width:795px; margin: 1em 0 2em 0; display: block; padding: 1em; border: 1px dotted #DDD;
background-color: rgba(255, 255, 202, 0.69); border-radius: 5px;">
<strong>Sticky</strong><br/>
<a class="reference external" href="https://pypi.org/project/rpyc">Version 3.2.3</a>
was released on December 2nd <br/>
Please use the
<a class="reference external" href="https://groups.google.com/forum/?fromgroups#!forum/rpyc">mailing list</a>
to ask questions and use
<a class="reference external" href="https://github.com/tomerfiliba/rpyc/issues">github issues</a>
to report problems. <strong>Please do not email me directly</strong>.
</div>
Ever wished the compactness of shell scripts be put into a **real** programming language?
Say hello to *Plumbum Shell Combinators*. Plumbum (Latin for *lead*, which was used to create
pipes back in the day) is a small yet feature-rich library for shell script-like programs in Python.
The motto of the library is **"Never write shell scripts again"**, and thus it attempts to mimic
the **shell syntax** (*shell combinators*) where it makes sense, while keeping it all **Pythonic
and cross-platform**.
Apart from :ref:`shell-like syntax <guide-local-commands>` and :ref:`handy shortcuts <guide-utils>`,
the library provides local and :ref:`remote <guide-remote-commands>` command execution (over SSH),
local and remote file-system :ref:`paths <guide-paths>`, easy working-directory and
environment :ref:`manipulation <guide-local-machine>`, quick access to ANSI :ref:`colors <guide-colors>`, and a programmatic
:ref:`guide-cli` application toolkit. Now let's see some code!
News
====
.. include:: _news.rst
* :doc:`changelog`
* :doc:`quickref`
Cheat Sheet
===========
.. include:: _cheatsheet.rst
Development and Installation
============================
The library is developed on `GitHub <https://github.com/tomerfiliba/plumbum>`_, and will happily
accept `patches <https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request>`_ from users. Please use the GitHub's
built-in `issue tracker <https://github.com/tomerfiliba/plumbum/issues>`_ to report any problem
you encounter or to request features. The library is released under the permissive `MIT license
<https://github.com/tomerfiliba/plumbum/blob/master/LICENSE>`_.
Requirements
------------
Plumbum supports **Python 3.6-3.10** and **PyPy** and is continually tested on
**Linux**, **Mac**, and **Windows** machines through `GitHub Actions
<https://github.com/tomerfiliba/plumbum/actions>`_. Any Unix-like machine
should work fine out of the box, but on Windows, you'll probably want to
install a decent `coreutils <https://en.wikipedia.org/wiki/GNU_Core_Utilities/>`_
environment and add it to your ``PATH``, or use WSL(2). I can recommend `mingw
<https://mingw.osdn.io/>`_ (which comes bundled with `Git for Windows
<https://gitforwindows.org/>`_), but `cygwin <http://www.cygwin.com/>`_ should
work too. If you only wish to use Plumbum as a Popen-replacement to run Windows
programs, then there's no need for the Unix tools.
Note that for remote command execution, an **openSSH-compatible** client is
required (also bundled with *Git for Windows*), and a ``bash``-compatible shell
and a coreutils environment is also expected on the host machine.
This project uses ``setuptools`` to build wheels; and ``setuptools_scm`` is
required for building SDists. These dependencies will be handled for you by PEP
518 compatible builders, like `build <https://github.com/pypa/build>`_ and ``pip 10+``.
Download
--------
You can **download** the library from the `Python Package Index
<https://pypi.org/pypi/plumbum/#files>`_ (in a variety of formats), or
run ``pip install plumbum`` directly. If you use Anaconda, you can also get it
from the ``conda-forge`` channel with ``conda install -c conda-forge plumbum``.
User Guide
==========
The user guide covers most of the features of Plumbum, with lots of code-snippets to get you
swimming in no time. It introduces the concepts and "syntax" gradually, so it's recommended
you read it in order. A quick :ref:`reference guide is available <guide-quickref>`.
.. toctree::
:maxdepth: 2
local_commands
paths
local_machine
remote
utils
cli
typed_env
colors
changelog
quickref
API Reference
=============
The API reference (generated from the *docstrings* within the library) covers all of the
exposed APIs of the library. Note that some "advanced" features and some function parameters are
missing from the guide, so you might want to consult with the API reference in these cases.
.. toctree::
:maxdepth: 2
api/cli
api/commands
api/machines
api/path
api/fs
api/colors
colorlib
.. note::
The ``local`` object is an instance of a ``machine``.
About
=====
The original purpose of Plumbum was to enable local and remote program execution with ease,
assuming nothing fancier than good-old SSH. On top of this, a file-system abstraction layer
was devised, so that working with local and remote files would be seamless.
I've toyed with this idea for some time now, but it wasn't until I had to write build scripts
for a project I've been working on that I decided I've had it with shell scripts and it's time
to make it happen. Plumbum was born from the scraps of the ``Path`` class, which I
wrote for the aforementioned build system, and the ``SshContext`` and ``SshTunnel`` classes
that I wrote for `RPyC <https://rpyc.readthedocs.io/>`_. When I combined the two with *shell combinators*
(because shell scripts do have an edge there) the magic happened and here we are.
Credits
=======
The project has been inspired by **PBS** (now called `sh <http://sh.rtfd.org>`_)
of `Andrew Moffat <https://github.com/amoffat>`_,
and has borrowed some of his ideas (namely treating programs like functions and the
nice trick for importing commands). However, I felt there was too much magic going on in PBS,
and that the syntax wasn't what I had in mind when I came to write shell-like programs.
I contacted Andrew about these issues, but he wanted to keep PBS this way. Other than that,
the two libraries go in different directions, where Plumbum attempts to provide a more
wholesome approach.
Plumbum also pays tribute to `Rotem Yaari <https://github.com/vmalloc/>`_ who suggested a
library code-named ``pyplatform`` for that very purpose, but which had never materialized.
|