繁体   English   中英

如何在python中解析CLI命令输出(表)?

[英]How to parse a CLI command output (table) in python?

我是解析新手。

switch-630624 [standalone: master] (config) # show interface ib status

Interface      Description                                Speed                   Current line rate   Logical port state   Physical port state
---------      -----------                                ---------               -----------------   ------------------   -------------------
Ib 1/1                                                    14.0 Gbps rate          56.0 Gbps           Initialize           LinkUp
Ib 1/2                                                    14.0 Gbps rate          56.0 Gbps           Initialize           LinkUp
Ib 1/3                                                    2.5 Gbps rate only      10.0 Gbps           Down                 Polling

假设我有一个将命令注入开关的引擎,并将上面的输出作为1个巨大的字符串放入名为“ output”的变量中。

我想返回一个仅包含端口号的字典,如下所示:

{'Ib1/11': '1/11', 'Ib1/10': '1/10', ... , }

我想我应该使用Python的Subprocess模块​​和正则表达式。

端口数量可以变化(可以是3、10、20、30、60 ...)。

我将不胜感激任何方向。

谢谢,

Qwerty键盘

# Did this in Python 2.7
import re

# Assume your input is in this file
INPUT_FILE = 'text.txt'

# Regex to only pay attention to lines starting with Ib
# and capture the port info
regex = re.compile(r'^(Ib\s*\S+)')
result = [] # Store results in a list
with open(INPUT_FILE, 'r') as theFile:
  for line in theFile:
    match = regex.search(line)
    if not match: continue
    result.append(match.group())
print result

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM