-
Notifications
You must be signed in to change notification settings - Fork 2
/
manejar_archivos.py
69 lines (46 loc) · 1.68 KB
/
manejar_archivos.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import os
import pickle
from registro import *
NOMBRE_PROY = "proyectos.csv"
NOMBRE_POPULARES = "populares.dat"
NOMBRE_TAGS = "proyectos_por_tags.txt"
def obtener_proyectos(vec_proyectos):
if not os.path.exists(NOMBRE_PROY):
print("El archivo no existe")
return 0, 0 # Devuelve un vector vacio
arch = open(NOMBRE_PROY, mode="rt", encoding="utf8")
linea = None
primera_linea = True # Para saltar la primera linea del archivo
descartados = 0
while linea is None or linea != "":
linea = arch.readline()
if linea != "" and not primera_linea:
proy = convertir_a_proyecto(linea)
if not (comprobar_linea(linea) and insetar_proy_ordenado(proy, vec_proyectos)):
descartados += 1
primera_linea = False
arch.close()
return len(vec_proyectos), descartados
def guardar_populares(vec_proyectos):
arch = open(NOMBRE_POPULARES, mode="wb")
for pop in vec_proyectos:
pickle.dump(pop, arch)
arch.close()
def leer_populares():
if not os.path.exists(NOMBRE_POPULARES):
print("El archivo no existe")
return []
arch = open(NOMBRE_POPULARES, mode="rb")
vec_pops = []
t = os.path.getsize(NOMBRE_POPULARES)
while arch.tell() < t:
pop = pickle.load(arch)
vec_pops.append(pop)
arch.close()
return vec_pops
def saving_file_tags(vec_proyectos):
archivo = open(NOMBRE_TAGS, mode="wt", encoding="utf8")
archivo.write("nombre_usuario|repositorio|fecha_actualizacion|lenguaje|likes|estrellas|tags|url\n")
for i in range(len(vec_proyectos)):
archivo.write(vec_proyectos[i].formato_archivo())
archivo.close()