capturer


Namecapturer JSON
Version 3.0 PyPI version JSON
download
home_pagehttps://capturer.readthedocs.io
SummaryEasily capture stdout/stderr of the current process and subprocesses
upload_time2020-03-07 00:34:50
maintainer
docs_urlNone
authorPeter Odding
requires_python>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            capturer: Easily capture stdout/stderr of the current process and subprocesses
==============================================================================

.. image:: https://travis-ci.org/xolox/python-capturer.svg?branch=master
   :target: https://travis-ci.org/xolox/python-capturer

.. image:: https://coveralls.io/repos/xolox/python-capturer/badge.svg?branch=master
  :target: https://coveralls.io/r/xolox/python-capturer?branch=master

The capturer package makes it easy to capture the stdout_ and stderr_ streams
of the current process *and subprocesses*. Output can be relayed to the
terminal in real time but is also available to the Python program for
additional processing. It's currently tested on cPython 2.7, 3.5+ and PyPy
(2.7). It's tested on Linux and Mac OS X and may work on other unixes but
definitely won't work on Windows (due to the use of the platform dependent pty_
module). For usage instructions please refer to the documentation_.

.. contents::
   :local:

Status
------

The `capturer` package was developed as a proof of concept over the course of a
weekend, because I was curious to see if it could be done (reliably). After a
weekend of extensive testing it seems to work fairly well so I'm publishing the
initial release as version 1.0, however I still consider this a proof of
concept because I don't have extensive "production" experience using it yet.
Here's hoping it works as well in practice as it did during my testing :-).

Installation
------------

The `capturer` package is available on PyPI_ which means installation should be
as simple as:

.. code-block:: console

   $ pip install capturer

There's actually a multitude of ways to install Python packages (e.g. the `per
user site-packages directory`_, `virtual environments`_ or just installing
system wide) and I have no intention of getting into that discussion here, so
if this intimidates you then read up on your options before returning to these
instructions ;-).

Getting started
---------------

The easiest way to capture output is to use a context manager:

.. code-block:: python

   import subprocess
   from capturer import CaptureOutput

   with CaptureOutput() as capturer:
       # Generate some output from Python.
       print "Output from Python"
       # Generate output from a subprocess.
       subprocess.call(["echo", "Output from a subprocess"])
       # Get the output in each of the supported formats.
       assert capturer.get_bytes() == b'Output from Python\r\nOutput from a subprocess\r\n'
       assert capturer.get_lines() == [u'Output from Python', u'Output from a subprocess']
       assert capturer.get_text() == u'Output from Python\nOutput from a subprocess'

The use of a context manager (`the with statement`_) ensures that output
capturing is enabled and disabled at the appropriate time, regardless of
whether exceptions interrupt the normal flow of processing.

Note that the first call to `get_bytes()`_, `get_lines()`_ or `get_text()`_
will stop the capturing of output by default. This is intended as a sane
default to prevent partial reads (which can be confusing as hell when you don't
have experience with them). So we could have simply used ``print`` to show
the results without causing a recursive "captured output is printed and then
captured again" loop. There's an optional ``partial=True`` keyword argument
that can be used to disable this behavior (please refer to the documentation_
for details).

Design choices
--------------

There are existing solutions out there to capture the stdout_ and stderr_
streams of (Python) processes. The `capturer` package was created for a very
specific use case that wasn't catered for by existing solutions (that I could
find). This section documents the design choices that guided the development of
the `capturer` package:

.. contents::
  :local:

Intercepts writes to low level file descriptors
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Libraries like capture_ and iocapture_ change Python's sys.stdout_ and
sys.stderr_ file objects to fake file objects (using StringIO_). This enables
capturing of (most) output written to the stdout_ and stderr_ streams from the
same Python process, however any output from subprocesses is unaffected by the
redirection and not captured.

The `capturer` package instead intercepts writes to low level file descriptors
(similar to and inspired by `how pytest does it`_). This enables capturing of
output written to the standard output and error streams from the same Python
process as well as any subprocesses.

Uses a pseudo terminal to emulate a real terminal
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The `capturer` package uses a pseudo terminal created using `pty.openpty()`_ to
capture output. This means subprocesses will use ANSI escape sequences because
they think they're connected to a terminal. In the current implementation you
can't opt out of this, but feel free to submit a feature request to change this
:-). This does have some drawbacks:

- The use of `pty.openpty()`_ means you need to be running in a UNIX like
  environment for `capturer` to work (Windows definitely isn't supported).

- All output captured is relayed on the stderr_ stream by default, so capturing
  changes the semantics of your programs. How much this matters obviously
  depends on your use case. For the use cases that triggered me to create
  `capturer` it doesn't matter, which explains why this is the default mode.

  There is experimental support for capturing stdout_ and stderr_ separately
  and relaying captured output to the appropriate original stream. Basically
  you call ``CaptureOutput(merged=False)`` and then you use the ``stdout`` and
  ``stderr`` attributes of the ``CaptureOutput`` object to get at the output
  captured on each stream.

  I say experimental because this method of capturing can unintentionally
  change the order in which captured output is emitted, in order to avoid
  interleaving output emitted on the stdout_ and stderr_ streams (which would
  most likely result in incomprehensible output). Basically output is relayed
  on each stream separately after each line break. This means interactive
  prompts that block on reading from standard input without emitting a line
  break won't show up (until it's too late ;-).

Relays output to the terminal in real time
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The main use case of `capturer` is to capture all output of a snippet of Python
code (including any output by subprocesses) but also relay the output to the
terminal in real time. This has a couple of useful properties:

- Long running operations can provide the operator with real time feedback by
  emitting output on the terminal. This sounds obvious (and it is!) but it is
  non-trivial to implement (an understatement :-) when you *also* want to
  capture the output.

- Programs like gpg_ and ssh_ that use interactive password prompts will render
  their password prompt on the terminal in real time. This avoids the awkward
  interaction where a password prompt is silenced but the program still hangs,
  waiting for input on stdin_.

Contact
-------

The latest version of `capturer` is available on PyPI_ and GitHub_. The
documentation is hosted on `Read the Docs`_ and includes a changelog_. For bug
reports please create an issue on GitHub_. If you have questions, suggestions,
etc. feel free to send me an e-mail at `peter@peterodding.com`_.

License
-------

This software is licensed under the `MIT license`_.

© 2020 Peter Odding.

A big thanks goes out to the pytest_ developers because pytest's mechanism for
capturing the output of subprocesses provided inspiration for the `capturer`
package. No code was copied, but both projects are MIT licensed anyway, so it's
not like it's very relevant :-).

.. External references:
.. _capture: https://pypi.org/project/capture
.. _changelog: https://capturer.readthedocs.io/en/latest/changelog.html
.. _documentation: https://capturer.readthedocs.io
.. _get_bytes(): https://capturer.readthedocs.io/en/latest/api.html#capturer.CaptureOutput.get_bytes
.. _get_lines(): https://capturer.readthedocs.io/en/latest/api.html#capturer.CaptureOutput.get_lines
.. _get_text(): https://capturer.readthedocs.io/en/latest/api.html#capturer.CaptureOutput.get_text
.. _GitHub: https://github.com/xolox/python-capturer
.. _gpg: https://en.wikipedia.org/wiki/GNU_Privacy_Guard
.. _how pytest does it: https://pytest.org/latest/capture.html
.. _iocapture: https://pypi.org/project/iocapture
.. _MIT license: http://en.wikipedia.org/wiki/MIT_License
.. _per user site-packages directory: https://www.python.org/dev/peps/pep-0370/
.. _peter@peterodding.com: peter@peterodding.com
.. _pty.openpty(): https://docs.python.org/2/library/pty.html#pty.openpty
.. _pty: https://docs.python.org/2/library/pty.html
.. _PyPI: https://pypi.org/project/capturer
.. _pytest: https://pypi.org/project/pytest
.. _Read the Docs: https://capturer.readthedocs.io
.. _ssh: https://en.wikipedia.org/wiki/Secure_Shell
.. _stderr: https://en.wikipedia.org/wiki/Standard_streams#Standard_error_.28stderr.29
.. _stdin: https://en.wikipedia.org/wiki/Standard_streams#Standard_input_.28stdin.29
.. _stdout: https://en.wikipedia.org/wiki/Standard_streams#Standard_output_.28stdout.29
.. _StringIO: https://docs.python.org/2/library/stringio.html
.. _sys.stderr: https://docs.python.org/2/library/sys.html#sys.stderr
.. _sys.stdout: https://docs.python.org/2/library/sys.html#sys.stdout
.. _the with statement: https://docs.python.org/2/reference/compound_stmts.html#the-with-statement
.. _virtual environments: http://docs.python-guide.org/en/latest/dev/virtualenvs/



            

Raw data

            {
    "_id": null,
    "home_page": "https://capturer.readthedocs.io",
    "name": "capturer",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
    "maintainer_email": "",
    "keywords": "",
    "author": "Peter Odding",
    "author_email": "peter@peterodding.com",
    "download_url": "https://files.pythonhosted.org/packages/9a/98/e2cac95d1cba553b10552511fdb55043b00a99bf8c1ed913ecbc654d6bfb/capturer-3.0.tar.gz",
    "platform": "",
    "description": "capturer: Easily capture stdout/stderr of the current process and subprocesses\n==============================================================================\n\n.. image:: https://travis-ci.org/xolox/python-capturer.svg?branch=master\n   :target: https://travis-ci.org/xolox/python-capturer\n\n.. image:: https://coveralls.io/repos/xolox/python-capturer/badge.svg?branch=master\n  :target: https://coveralls.io/r/xolox/python-capturer?branch=master\n\nThe capturer package makes it easy to capture the stdout_ and stderr_ streams\nof the current process *and subprocesses*. Output can be relayed to the\nterminal in real time but is also available to the Python program for\nadditional processing. It's currently tested on cPython 2.7, 3.5+ and PyPy\n(2.7). It's tested on Linux and Mac OS X and may work on other unixes but\ndefinitely won't work on Windows (due to the use of the platform dependent pty_\nmodule). For usage instructions please refer to the documentation_.\n\n.. contents::\n   :local:\n\nStatus\n------\n\nThe `capturer` package was developed as a proof of concept over the course of a\nweekend, because I was curious to see if it could be done (reliably). After a\nweekend of extensive testing it seems to work fairly well so I'm publishing the\ninitial release as version 1.0, however I still consider this a proof of\nconcept because I don't have extensive \"production\" experience using it yet.\nHere's hoping it works as well in practice as it did during my testing :-).\n\nInstallation\n------------\n\nThe `capturer` package is available on PyPI_ which means installation should be\nas simple as:\n\n.. code-block:: console\n\n   $ pip install capturer\n\nThere's actually a multitude of ways to install Python packages (e.g. the `per\nuser site-packages directory`_, `virtual environments`_ or just installing\nsystem wide) and I have no intention of getting into that discussion here, so\nif this intimidates you then read up on your options before returning to these\ninstructions ;-).\n\nGetting started\n---------------\n\nThe easiest way to capture output is to use a context manager:\n\n.. code-block:: python\n\n   import subprocess\n   from capturer import CaptureOutput\n\n   with CaptureOutput() as capturer:\n       # Generate some output from Python.\n       print \"Output from Python\"\n       # Generate output from a subprocess.\n       subprocess.call([\"echo\", \"Output from a subprocess\"])\n       # Get the output in each of the supported formats.\n       assert capturer.get_bytes() == b'Output from Python\\r\\nOutput from a subprocess\\r\\n'\n       assert capturer.get_lines() == [u'Output from Python', u'Output from a subprocess']\n       assert capturer.get_text() == u'Output from Python\\nOutput from a subprocess'\n\nThe use of a context manager (`the with statement`_) ensures that output\ncapturing is enabled and disabled at the appropriate time, regardless of\nwhether exceptions interrupt the normal flow of processing.\n\nNote that the first call to `get_bytes()`_, `get_lines()`_ or `get_text()`_\nwill stop the capturing of output by default. This is intended as a sane\ndefault to prevent partial reads (which can be confusing as hell when you don't\nhave experience with them). So we could have simply used ``print`` to show\nthe results without causing a recursive \"captured output is printed and then\ncaptured again\" loop. There's an optional ``partial=True`` keyword argument\nthat can be used to disable this behavior (please refer to the documentation_\nfor details).\n\nDesign choices\n--------------\n\nThere are existing solutions out there to capture the stdout_ and stderr_\nstreams of (Python) processes. The `capturer` package was created for a very\nspecific use case that wasn't catered for by existing solutions (that I could\nfind). This section documents the design choices that guided the development of\nthe `capturer` package:\n\n.. contents::\n  :local:\n\nIntercepts writes to low level file descriptors\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nLibraries like capture_ and iocapture_ change Python's sys.stdout_ and\nsys.stderr_ file objects to fake file objects (using StringIO_). This enables\ncapturing of (most) output written to the stdout_ and stderr_ streams from the\nsame Python process, however any output from subprocesses is unaffected by the\nredirection and not captured.\n\nThe `capturer` package instead intercepts writes to low level file descriptors\n(similar to and inspired by `how pytest does it`_). This enables capturing of\noutput written to the standard output and error streams from the same Python\nprocess as well as any subprocesses.\n\nUses a pseudo terminal to emulate a real terminal\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe `capturer` package uses a pseudo terminal created using `pty.openpty()`_ to\ncapture output. This means subprocesses will use ANSI escape sequences because\nthey think they're connected to a terminal. In the current implementation you\ncan't opt out of this, but feel free to submit a feature request to change this\n:-). This does have some drawbacks:\n\n- The use of `pty.openpty()`_ means you need to be running in a UNIX like\n  environment for `capturer` to work (Windows definitely isn't supported).\n\n- All output captured is relayed on the stderr_ stream by default, so capturing\n  changes the semantics of your programs. How much this matters obviously\n  depends on your use case. For the use cases that triggered me to create\n  `capturer` it doesn't matter, which explains why this is the default mode.\n\n  There is experimental support for capturing stdout_ and stderr_ separately\n  and relaying captured output to the appropriate original stream. Basically\n  you call ``CaptureOutput(merged=False)`` and then you use the ``stdout`` and\n  ``stderr`` attributes of the ``CaptureOutput`` object to get at the output\n  captured on each stream.\n\n  I say experimental because this method of capturing can unintentionally\n  change the order in which captured output is emitted, in order to avoid\n  interleaving output emitted on the stdout_ and stderr_ streams (which would\n  most likely result in incomprehensible output). Basically output is relayed\n  on each stream separately after each line break. This means interactive\n  prompts that block on reading from standard input without emitting a line\n  break won't show up (until it's too late ;-).\n\nRelays output to the terminal in real time\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe main use case of `capturer` is to capture all output of a snippet of Python\ncode (including any output by subprocesses) but also relay the output to the\nterminal in real time. This has a couple of useful properties:\n\n- Long running operations can provide the operator with real time feedback by\n  emitting output on the terminal. This sounds obvious (and it is!) but it is\n  non-trivial to implement (an understatement :-) when you *also* want to\n  capture the output.\n\n- Programs like gpg_ and ssh_ that use interactive password prompts will render\n  their password prompt on the terminal in real time. This avoids the awkward\n  interaction where a password prompt is silenced but the program still hangs,\n  waiting for input on stdin_.\n\nContact\n-------\n\nThe latest version of `capturer` is available on PyPI_ and GitHub_. The\ndocumentation is hosted on `Read the Docs`_ and includes a changelog_. For bug\nreports please create an issue on GitHub_. If you have questions, suggestions,\netc. feel free to send me an e-mail at `peter@peterodding.com`_.\n\nLicense\n-------\n\nThis software is licensed under the `MIT license`_.\n\n\u00a9 2020 Peter Odding.\n\nA big thanks goes out to the pytest_ developers because pytest's mechanism for\ncapturing the output of subprocesses provided inspiration for the `capturer`\npackage. No code was copied, but both projects are MIT licensed anyway, so it's\nnot like it's very relevant :-).\n\n.. External references:\n.. _capture: https://pypi.org/project/capture\n.. _changelog: https://capturer.readthedocs.io/en/latest/changelog.html\n.. _documentation: https://capturer.readthedocs.io\n.. _get_bytes(): https://capturer.readthedocs.io/en/latest/api.html#capturer.CaptureOutput.get_bytes\n.. _get_lines(): https://capturer.readthedocs.io/en/latest/api.html#capturer.CaptureOutput.get_lines\n.. _get_text(): https://capturer.readthedocs.io/en/latest/api.html#capturer.CaptureOutput.get_text\n.. _GitHub: https://github.com/xolox/python-capturer\n.. _gpg: https://en.wikipedia.org/wiki/GNU_Privacy_Guard\n.. _how pytest does it: https://pytest.org/latest/capture.html\n.. _iocapture: https://pypi.org/project/iocapture\n.. _MIT license: http://en.wikipedia.org/wiki/MIT_License\n.. _per user site-packages directory: https://www.python.org/dev/peps/pep-0370/\n.. _peter@peterodding.com: peter@peterodding.com\n.. _pty.openpty(): https://docs.python.org/2/library/pty.html#pty.openpty\n.. _pty: https://docs.python.org/2/library/pty.html\n.. _PyPI: https://pypi.org/project/capturer\n.. _pytest: https://pypi.org/project/pytest\n.. _Read the Docs: https://capturer.readthedocs.io\n.. _ssh: https://en.wikipedia.org/wiki/Secure_Shell\n.. _stderr: https://en.wikipedia.org/wiki/Standard_streams#Standard_error_.28stderr.29\n.. _stdin: https://en.wikipedia.org/wiki/Standard_streams#Standard_input_.28stdin.29\n.. _stdout: https://en.wikipedia.org/wiki/Standard_streams#Standard_output_.28stdout.29\n.. _StringIO: https://docs.python.org/2/library/stringio.html\n.. _sys.stderr: https://docs.python.org/2/library/sys.html#sys.stderr\n.. _sys.stdout: https://docs.python.org/2/library/sys.html#sys.stdout\n.. _the with statement: https://docs.python.org/2/reference/compound_stmts.html#the-with-statement\n.. _virtual environments: http://docs.python-guide.org/en/latest/dev/virtualenvs/\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Easily capture stdout/stderr of the current process and subprocesses",
    "version": "3.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "41a0439e4c25fab6a5ee4a733bd61f1d",
                "sha256": "b1ef6e8831cd170906df7c881a36c8b8a1b0b824b147b950a1a8c11776da981b"
            },
            "downloads": -1,
            "filename": "capturer-3.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "41a0439e4c25fab6a5ee4a733bd61f1d",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
            "size": 15482,
            "upload_time": "2020-03-07T00:34:48",
            "upload_time_iso_8601": "2020-03-07T00:34:48.434950Z",
            "url": "https://files.pythonhosted.org/packages/63/98/c0959507a5b99c2813ee1da7ce9b8dfe9b05d8ab0d6c20e54d8b0f0bde18/capturer-3.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "54e1b1540788b28a92e8a1815d054754",
                "sha256": "4849032f6a670c02be434c484a0abf43c870a1efafafbfffd2e6f1c1f7ef5001"
            },
            "downloads": -1,
            "filename": "capturer-3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "54e1b1540788b28a92e8a1815d054754",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
            "size": 18146,
            "upload_time": "2020-03-07T00:34:50",
            "upload_time_iso_8601": "2020-03-07T00:34:50.566051Z",
            "url": "https://files.pythonhosted.org/packages/9a/98/e2cac95d1cba553b10552511fdb55043b00a99bf8c1ed913ecbc654d6bfb/capturer-3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-03-07 00:34:50",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "capturer"
}
        
Elapsed time: 0.01743s