fichier Python exercices

This commit is contained in:
cameron.desrayaud 2021-10-06 09:27:34 +02:00
parent d13fd49d51
commit d8c2e77297
3 changed files with 189793 additions and 0 deletions

189759
Python/Python/access.log Normal file

File diff suppressed because it is too large Load Diff

11
Python/Python/exotp2-exprregu Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/python3
import sys
import re
regexp = '^(\S+) (\S+) (\S+) \[([^]]+)\] "(\w+) (\S+).*" (\d+) (\S+)'
for line in sys.stdin:
line = line.rstrip ()
match =re.match (regexp, line)
if match :
print (match.group(1)," ",match.group(8))
# for line in

23
Python/analog.py Normal file
View File

@ -0,0 +1,23 @@
#!/usr/bin/python3
import sys
import re
cptip = {}
regexp = '^(\S+) (\S+) (\S+) \[([^]]+)\] "(\w+) (\S+).*" (\d+) (\S+)'
for line in sys.stdin:
line = line.rstrip ()
match =re.match (regexp, line)
if match :
print (match.group(1)," ",match.group(8))
#print {match.group(1)}
ip = match.group(1)
vol = int(match.group(8))
if ip in cptip :
cptip[ip] = cptip[ip] + vol
else:
cptip[ip] = vol
for key in cptip.keys():
print(key, ":", cptip[key])