
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
|Build Status| |PyPI version|
Python library to tee stderr / stdout to a file
.. code:: bash
pip install tee
tee_test.py
.. code:: python
import sys
from tee import StdoutTee, StderrTee
with StdoutTee("mystdout.txt"), StderrTee("mystderr.txt"):
sys.stdout.write("[stdout] hello\n")
sys.stderr.write("[stderr] hello\n")
sys.stdout.write("[stdout] world\n")
sys.stderr.write("[stderr] world\n")
sys.stdout.write("[stdout] not going to be written to file\n")
sys.stderr.write("[stderr] not going to be written to file\n")
.. code:: bash
$ python tee_test.py
[stdout] hello
[stderr] hello
[stdout] world
[stderr] world
[stdout] not going to be written to file
[stderr] not going to be written to file
$ cat mystdout.txt
[stdout] hello
[stdout] world
$ cat mystderr.txt
[stderr] hello
[stderr] world
StdoutTee and StderrTee take filters as parameters which run before writing to a file or the stream. These filters are callables that take the message to be written as input and return either None or a new message.
I find them particularly useful when you want to write colorized output to the stream, but strip out the control characters when writing to a file, especially when using fabric.
.. code:: python
import re
import tee
from fabric.api import run
def _remove_control_chars(message):
return re.sub(r'(\x9B|\x1B\[)[0-?]*[ -\/]*[@-~]', "", message)
def echo_color():
with tee.StdoutTee("fabout.txt", mode="a", file_filters=[_remove_control_chars]):
run("""echo -e "\E[1;32mHello World \E[4;31mLets add some\E[0m\E[1;34m color" && tput sgr0""")
.. code:: bash
fab -H localhost echo_color
.. |Build Status| image:: https://travis-ci.org/algrebe/python-tee.svg?branch=master :target: https://travis-ci.org/algrebe/python-tee .. |PyPI version| image:: https://badge.fury.io/py/tee.svg :target: https://badge.fury.io/py/tee
FAQs
Python library to tee stderr/stdout temporarily
We found that tee demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.