Metadata-Version: 2.1
Name: NetTraRec
Version: 0.1.2
Summary: 服务器流量监控小工具
Home-page: https://github.com/ga1008/net_tracfic_recorder
Author: Guardian
Author-email: zhling2012@live.com
Maintainer: Guardian
Maintainer-email: zhling2012@live.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: basecolors
Requires-Dist: psutil
Requires-Dist: redis
Requires-Dist: requests
Requires-Dist: numpy
Requires-Dist: scipy

服务器流量监控小工具
====

### 安装：  

```  
$ pip install NetTraRec  
```  

### 终端使用：  

```  
$ netrec [-选项]

# 显示帮助
$ netrec -h

# 结果推入 redis
$ netrec -pr
# 然后在启动后输入相关信息：
# target redis host(127.0.0.1): 
# port(6379): 
# db(0): 
# password(123456):
# ...

# 目标 redis 可以是本地或远程
# redis 信息也可以使用参数 "-kp now>>>>参数字典" 传入，方便远程调度
# 例如：
$ netrec -pr -kp 'now>>>>{"host": ..., "port": ..., ...}'
```

### 代码调用：  
```  
from NetRecorder import NetTraRec as Nr
res = Nr.start(["eth0"], print_out=False, unit="auto")
print(res)

# {'eth0': ['126.00 Bytes/s', '132.00 Bytes/s', 'auto', '2020-07-08 09:51:17']}
```  

### 参数介绍：  
懒得写了，看帮助吧  


