tp python

This commit is contained in:
elam monnot 2022-09-29 11:52:19 +02:00
parent ba69fb4a2c
commit 62df029ff7
6 changed files with 191530 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#!/usr/bin/python3
import sys
import re
volip={}
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 = int(res.group (8))
#print ('host : ', host, ' byte : ', byte)
if host not in volip:
volip[host]=byte
else:
volip[host]=volip[host]+byte
for addr in sorted(volip.keys()):
print(addr, "", volip[addr])

13
sio1/sisr1/70-python/analyse.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/python3
import sys
import re
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)

View File

@ -0,0 +1,34 @@
#!/usr/bin/python3
import sys
if len(sys.argv) != 2:
print("usage: ", sys.argv[0], "<fichier>")
sys.exit(1) # nombre de parametre invalide
filename = sys.argv[1]
try:
file = open(filename , "r")
except:
msg = "erreur ouverture fichier " + filename
print(msg, file=sys.stderr)
else:
line = file.readline()
maligne = line.rstrip()
while maligne:
(login, complet) = maligne.split(":")
print (login)
print (complet)
commande="useradd --create-home --home-dir /home/"+login+ " --shell /bin/bash --comment \"" + complet + "\" " + login
login = []
line = file.readline()
maligne = line.rstrip()
print(line)
file.close()

File diff suppressed because it is too large Load Diff

189641
sio1/sisr1/70-python/result.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,4 @@
emonnot:Elam Monnot
pdubois:Paul Dubois
blennon:Bob Lennon