Adding a python file to parse the IP addresses.

pull/6/head
Matt Bruzek 2015-04-17 17:22:48 -05:00
parent af8f31a0cd
commit 8f038a82a4
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#!/usr/bin/env python
import json
import sys
nodes = json.loads(sys.argv[1])
for num in nodes:
print num['Stdout'].rstrip()