forked from mouredev/retos-programacion-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
language_stats.py
39 lines (29 loc) · 1.19 KB
/
language_stats.py
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
# Script para calcular el % de uso de cada lenguaje
import os
import operator
def scan_dir(dir_path, languages={}, total=0, path_name=None) -> tuple:
for path in os.scandir(dir_path):
if path.is_dir():
if "Reto #" not in path.name and path.name not in languages:
languages[path.name] = 0
_, total = scan_dir(path.path, languages, total, path.name)
else:
if path_name in languages:
total += 1
languages[path_name] += 1
return (languages, total)
# Directorio de retos a analizar
dir_path = os.path.dirname(__file__)
print(dir_path)
# Directorio de un reto específico
# dir_path += "/Reto #0 - EL FAMOSO FIZZ BUZZ [Fácil]"
# Función recursiva para recorrer el directorio y almacenar el número de archivos por lenguajes
languajes, total = scan_dir(dir_path)
# Ordenación por uso
languajes = dict(
sorted(languajes.items(), key=operator.itemgetter(1), reverse=True))
# Estadísticas
print(f"{len(languajes.keys())} Lenguajes ({total} correcciones):")
for languaje in languajes:
print(
f"> {languaje.upper()} ({languajes[languaje]}): {round(languajes[languaje] / total * 100, 2)}%")