netbox-agent/netbox_agent/drivers/datacenter_cmd.py

11 lines
214 B
Python

import re
import subprocess
def get(value, regex):
output = subprocess.getoutput(value)
r = re.search(regex, output)
if r:
result = r.group('datacenter')
return result
return None