28 lines
622 B
Python
Executable File
28 lines
622 B
Python
Executable File
#!/usr/bin/python3
|
||
import sys
|
||
import re
|
||
#tab = []
|
||
volume = {}
|
||
|
||
regexp = "^(\S+) (\S+) (\S+) \[([^]]+)\] \"(\w+) (\S+).*\" (\d+) (\S+)"
|
||
for line in sys.stdin: # on lit sur l’entré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 =int(res.group (8))
|
||
if host in volume:
|
||
volume[host]= volume[host] + byte
|
||
else:
|
||
volume[host] = byte
|
||
|
||
for host in volume.keys():
|
||
print(host, ":", volume[host])
|
||
|
||
|
||
|
||
|
||
|
||
|