a simple subprocess manager,suport stream stdout \ async
Project description
### 介绍
一个subprocess模块的封装,可以更方便的进行系统调用
To Do List:
1. return realtime result
2. task async run
[开发easyrun的环境是python3哦]
### 安装
pip安装
```
pip install easyrun
```
源码安装
```
git clone git@github.com:rfyiamcool/easyrun.git
cd easyrun
python setup.py install
```
### 使用方法
只单纯的执行,然后返回linux run code和执行状态
```
>>> import easyrun
>>> r = easyrun.run('uptime')
04:06:37 up 2 min, 1 user, load average: 0.20, 0.19, 0.08
>>> r.output
>>> r.success
True
>>> r.retcode
0
```
捕捉所有的执行结果
```
>>> r = easyrun.run_capture('uptime')
>>> r.output
' 04:07:16 up 2 min, 1 user, load average: 0.11, 0.17, 0.08\n'
>>> r.success
True
>>> r.retcode
0
```
把输出的结果精简过,maxlines是控制行数
```
print(run_capture_limited('ls', maxlines=2).output)
```
easyrun example usage:
```
from easyrun import run_capture
r = run_capture('ls -la')
if r.success:
print(r.output)
else:
print("Error: '%s' exit code %s" % (r.command, r.retcode))
print(" ...")
# print last three lines of output
for line in r.output.splitlines()[-3:]:
print(" %s" % line)
```
一个subprocess模块的封装,可以更方便的进行系统调用
To Do List:
1. return realtime result
2. task async run
[开发easyrun的环境是python3哦]
### 安装
pip安装
```
pip install easyrun
```
源码安装
```
git clone git@github.com:rfyiamcool/easyrun.git
cd easyrun
python setup.py install
```
### 使用方法
只单纯的执行,然后返回linux run code和执行状态
```
>>> import easyrun
>>> r = easyrun.run('uptime')
04:06:37 up 2 min, 1 user, load average: 0.20, 0.19, 0.08
>>> r.output
>>> r.success
True
>>> r.retcode
0
```
捕捉所有的执行结果
```
>>> r = easyrun.run_capture('uptime')
>>> r.output
' 04:07:16 up 2 min, 1 user, load average: 0.11, 0.17, 0.08\n'
>>> r.success
True
>>> r.retcode
0
```
把输出的结果精简过,maxlines是控制行数
```
print(run_capture_limited('ls', maxlines=2).output)
```
easyrun example usage:
```
from easyrun import run_capture
r = run_capture('ls -la')
if r.success:
print(r.output)
else:
print("Error: '%s' exit code %s" % (r.command, r.retcode))
print(" ...")
# print last three lines of output
for line in r.output.splitlines()[-3:]:
print(" %s" % line)
```
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
easyrun-3.9.3.tar.gz
(3.1 kB
view details)
File details
Details for the file easyrun-3.9.3.tar.gz.
File metadata
- Download URL: easyrun-3.9.3.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc5ed5ed10c62bf357100cc04357e18028a8383d4f464b3e753bdce35f165c18
|
|
| MD5 |
a372d8bacef13ffb1020f116c3218536
|
|
| BLAKE2b-256 |
fee19e6128c856550b2c165df99da046ff92ccb785e1ad3993dffe8e9d556006
|