|
|
@ -54,7 +54,6 @@ if args.dry is True:
|
|
|
|
site = Site(host=args.host, path=args.path)
|
|
|
|
site = Site(host=args.host, path=args.path)
|
|
|
|
|
|
|
|
|
|
|
|
wd = os.path.dirname(os.path.abspath(__file__)) # working directory
|
|
|
|
wd = os.path.dirname(os.path.abspath(__file__)) # working directory
|
|
|
|
imgdir = os.path.join(wd, 'images')
|
|
|
|
|
|
|
|
imgsjson_fn = os.path.join(wd, 'images.json')
|
|
|
|
imgsjson_fn = os.path.join(wd, 'images.json')
|
|
|
|
with open(imgsjson_fn, 'r') as imgsjson_file:
|
|
|
|
with open(imgsjson_fn, 'r') as imgsjson_file:
|
|
|
|
images_info = json.load(imgsjson_file)
|
|
|
|
images_info = json.load(imgsjson_file)
|
|
|
@ -90,7 +89,7 @@ for answer in site.ask(query):
|
|
|
|
print(Colors.GREEN, 'run python3 download_imgs.py to fix the issue', Colors.ENDC)
|
|
|
|
print(Colors.GREEN, 'run python3 download_imgs.py to fix the issue', Colors.ENDC)
|
|
|
|
sys.exit()
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
|
|
|
|
img_local = os.path.join(imgdir, img_info.get('filename'))
|
|
|
|
img_local = os.path.join('../images', img_info.get('filename'))
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: look into the template structure of images : columns and rows
|
|
|
|
# TODO: look into the template structure of images : columns and rows
|
|
|
|
|
|
|
|
|
|
|
|