
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.
The popen
package provides a simple shell-like syntax inside python for running
external commands.
Features:
Sh('ls') | 'sort'
Sh('make').include_stderr | 'wc'
Sh('ls') > '~/listing.txt'
for line in Sh('ls'):
Sh.pipe('~/listing.txt').Sh('grep', '-q', 'code').returncode
~*!?
)$HOME
) as print Sh('ls', '$USER', '~/*')
'echo "hole in one"'
becomes ['echo', 'hole in one']
)Sh('ls', '-l') | ['wc', '-l'] > '/dev/null'
)Installation:
.. code-block:: SH
pip install popen
Example:
.. code-block:: PY
from popen import Sh
for line in Sh('du', '~/') | 'head -n 10' | 'sort -n':
print('GOT', line)
Simples usage, run a command and iterate the output lines:
.. code-block:: PY
from popen import Sh
for line in Sh('ls', '-la', '~'):
print line
Piping that output to a file:
.. code-block:: PY
Sh('ls', '-la', '~') > '~/listing'
Note that special characters like ~
are expanded, as are environment
variables (e.g. $HOME
).
Chaining commands is trivial, here with append instead of write to file:
.. code-block:: PY
Sh('ls') | Sh('sort') >> '~/listing'
But the right hand side of |
can be very flexible, as it employs
lexical splitter on string input or takes an iterable:
.. code-block:: PY
Sh('ls', '-la', '~') | 'sort -c' | ['uniq', '-c'] | 'tail' | Sh('wc') > '~/listing'
To run a command and let output go to stdout
, ask for the return code:
.. code-block:: PY
cmd = Sh('ls') | 'grep polka'
print cmd.returncode
To pipe a string into a command, wrap in an iterable:
.. code-block:: PY
print Sh.pipe(['this is a \nmulti line\nstring.']) | 'wc'
FAQs
A shell-like DSL front for subprocess.Popen
We found that popen 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.