removed photo and description from out.json

This commit is contained in:
Eljakim Herrewijnen 2024-04-01 15:37:30 +02:00
parent 26ddbc6c6b
commit 22ed4c0494
7 changed files with 2 additions and 0 deletions

View File

@ -75,6 +75,8 @@ def generate_json(houses):
for key in houses.keys(): for key in houses.keys():
if key == "descrip" or key == "photo":
continue
out_dict[key] = houses.__getattr__(key).get(i) out_dict[key] = houses.__getattr__(key).get(i)
get_distances(out_dict, destination_location) get_distances(out_dict, destination_location)