-
Notifications
You must be signed in to change notification settings - Fork 1
/
actualizar_favorito.py
50 lines (34 loc) · 1.19 KB
/
actualizar_favorito.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
import json
def update_favorito(URL):
lista = []
# Solicitando el favorito a modificar
titulo_modificar = input("Ingrese el título a modificar ")
datos = cargar_json(URL)
# Eliminando el favorito.
if titulo_modificar in datos:
del datos[titulo_modificar]
# Escribiendo en el archivo.json
escribir_json(URL, datos)
# Solicitando los datos a modificar
nuevo_titulo = input("Ingresa el nuevo título ")
nueva_url = input("Ingresa la nueva URL ")
nuevo_comentario = input("Ingresa el nuevo comentario ")
# Agregando el nuevo comentario y la nueva URL a la lista
lista.append(nueva_url)
lista.append(nuevo_comentario)
datos = cargar_json(URL)
# Agregando el favorito al diccionario
datos[nuevo_titulo] = lista
# Escribiendo en el archivo.json
escribir_json(URL, datos)
else:
print("No existe el favorito en el archivo")
def escribir_json(url, datos):
archivo = open(url, "w")
json.dump(datos, archivo)
archivo.close()
def cargar_json(url):
archivo = open(url, "r")
datos = json.load(archivo)
archivo.close()
return datos