You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
Python
33 lines
1.3 KiB
Python
import os, json
|
|
|
|
|
|
def update_json(imgsjson_fn, img_dict, img_fn):
|
|
# write img_dict to json file
|
|
if os.path.isfile(imgsjson_fn) is True: # if json exists
|
|
with open(imgsjson_fn, 'r') as imgsjson_file: # read its content
|
|
imgsjson_dict = json.load(imgsjson_file)
|
|
# print(imgsjson_dict)
|
|
else: # other wise
|
|
imgsjson_dict = {} # imgsjson_dict will be an empty dictionary
|
|
|
|
# is file already in dict
|
|
if img_dict['name'] in imgsjson_dict.keys():
|
|
# check if
|
|
# file is locally stored
|
|
img_issaved = os.path.isfile(img_fn)
|
|
# timestamp in json is same as in img object
|
|
img_samets = imgsjson_dict[img_dict['name']]['timestamp'] == img_dict['timestamp']
|
|
if all([img_issaved, img_samets]) is False: # if one or more is False
|
|
# ask it to download again
|
|
download = True
|
|
imgsjson_dict[img_dict['name']] = img_dict # add img_dict to imgsjson_dict under the key of the img.name
|
|
else:
|
|
download = False
|
|
else:
|
|
download = True
|
|
imgsjson_dict[img_dict['name']] = img_dict # add img_dict to imgsjson_dict under the key of the img.name
|
|
|
|
with open(imgsjson_fn, 'w') as imgsjson_file:
|
|
json.dump(imgsjson_dict, imgsjson_file, indent=4)
|
|
|
|
return download |