forked from AbeTavarez/Python_DevOps_Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate_report.py
More file actions
45 lines (29 loc) Β· 1.15 KB
/
Copy pathgenerate_report.py
File metadata and controls
45 lines (29 loc) Β· 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
import csv
def read_employees(csv_file_location):
with open(csv_file_location) as csv_file:
csv.register_dialect('empDialect', skipinitialspace=True, strict=True)
csv_reader = csv.DictReader(csv_file, dialect='empDialect')
employee_list = []
for data in csv_reader:
employee_list.append(data)
return employee_list
employee_list = read_employees(
"/home/student-04-25f29a151feb/data/employees.csv")
def process_data(employee_list):
department_list = []
for employee_data in employee_list:
department_list.append(employee_data["Department"])
department_data = {}
for department_name in set(department_list):
department_data[department_name] = department_list.count(
department_name)
return department_data
dictionary = process_data(employee_list)
print(dictionary)
def write_report(dictionary, report_file):
with open(report_file, 'w+') as f:
for k in sorted(dictionary):
f.write(str(k)+':'+str(dictionary[k])+'\n')
f.close()
write_report(dictionary, "/home/student-04-25f29a151feb/test_report.txt")