Workshop - third step

Import tshark parsing headers in Redis
This commit is contained in:
Alexandre Dulaunoy 2015-01-10 19:25:07 +01:00
parent d3b76fd9bb
commit a7f73154b0

View file

@ -11,7 +11,11 @@ r = redis.StrictRedis(host='localhost', port=6379, db=0)
if args.f is not None:
md5 = args.f[0].split(".")[0]
r.sadd('processed', md5)
lnumber = 0
for line in sys.stdin:
print (line.split(",")[0])
if lnumber == 0:
for field in line.rstrip().split(","):
r.sadd('type', field)
lnumber = lnumber + 1
else:
argParser.print_help()