netbox-agent/netbox_agent/drivers/datacenter_cmd.py
2019-08-04 19:51:36 +02:00

10 lines
206 B
Python

import re
import subprocess
def get(value, regex):
output = subprocess.getoutput(value)
r = re.search(regex, output)
if r and len(r.groups()) > 0:
return r.groups()[0]
return None