Skip to main content

Make shell script running in a Pythonic way.

Project description

About

Running shell in a Pythonic way.

Installation

$ pip install simplerun

Usage

Basic

>> from simplerun import run
>> r = run('ls -l')
>> r
<[0] `ls -l`>

0 refers to the exit code here.

>> print r.std_out
total 8
-rw-r--r-- 1 yj staff 664 11 19 21:46 README.md
-rw-r--r-- 1 yj staff 829 11 18 22:39 setup.py
drwxr-xr-x 6 yj staff 204 11 19 21:46 simplerun

Iterable as input data

>> with open('setup.py') as data:
>>     r = run('grep def', data)
>> print(r.std_out)

Result object as input data

>> r_data = run('ps aux')
>> r = run('grep Chrome', r_data)

Use as a debugger

>> r = run('ps aux | stranger | grep keyword')
>> r
<[-1] `stranger`>
>> r.exc
OSError(2, 'No such file or directory')

Found the stanger is the evil

>> r.history
[<[0] `ps aux`>]

review history, and keep going with good input:

>> r.rest
[['grep', 'keyword']]
>>
>> r2 = run(r.rest, '''Good line that contains the keyword
                       but not this line, sorry.''')
>> print(r2.std_out)
'Good line that contains the keyword\n'

Concurrent & Paralell

>> batches = ['ps', 'top -n 10', 'uptime']
>> r = prun(batches)  # paralell running
>> r2 = concurrent_run(batches)  # or, running in a concurrent mode

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

simplerun-0.3.1.tar.gz (3.2 kB view details)

Uploaded Source

File details

Details for the file simplerun-0.3.1.tar.gz.

File metadata

  • Download URL: simplerun-0.3.1.tar.gz
  • Upload date:
  • Size: 3.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for simplerun-0.3.1.tar.gz
Algorithm Hash digest
SHA256 5248fed39cff1cec12c6fc3db750d805d55164ff1ce3d10938e22b2c15c02d44
MD5 8b5aab07ceef80890e4befb27905b4b3
BLAKE2b-256 7ef77ddd3111949ba1977564d3ad6751581b6442282c8c6ee81e1c8d6c881fa7

See more details on using hashes here.

Supported by

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