siotp/sio2/SISR/07-python/stat_log.py

31 lines
833 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/python3
import sys
import re
volip = {}
cptip = {}
regexp = "^(\S+) (\S+) (\S+) \[([^]]+)\] \"(\w+) (\S+).*\" (\d+) (\S+)"
for line in sys.stdin: # on lit sur lentrée standard
line = line.rstrip () # on enleve le retour ligne
res = re.match (regexp, line)
if res:
(host, rfc931, user, date, request, url, status, byte) = res.groups()
host = res.group (1)
byte = res.group (8)
# print ('host : ', host, ' byte : ', byte)
if host in volip:
volip[host] +=int(byte)
else :
volip[host] =int(byte)
if host in cptip:
cptip[host] +=1
else :
cptip[host] = 1
for host in volip.keys():
print (" Lhote" , host , " : ", volip[host])
for host in cptip.keys():
print ("L'hote " , host, "s'est connecté ", cptip[host], "fois")