텍스트 파일에서 주니퍼 장비 정보 파싱하기
import re import pandas as pd host = re.compile(r"Hostname: (\w{1,30})") model = re.compile(r"Model: (\w{1,7}-\w{1,7})") ver = re.compile(r"Junos: (\w{1,2}.\w{1,3})") serial = re.compile(r"FPC \d{1} \w{1,3} \d{1,2} \w{1,3}-\w{1,6} (\w{1,13})") with open("juniper_rawdata.txt") as f: f_line = f.read().splitlines() h=host.findall(str(f_line)) m=model.findall(str(f_line)) s=serial.findall(str(f_line..