image_path=f'{PUBLIC_STATIC_FOLDER_PATH}/images/{filename}'# here the images need to link to the / of the domain, for flask :/// confusing! this breaks the whole idea to still be able to make a local copy of the file
matches=re.findall(rf'src="/book/images/.*?px-{filename}"',html)# for debugging
matches=re.findall(rf'src="/images/.*?px-{filename}"',html)# for debugging
image_path=f'{PUBLIC_STATIC_FOLDER_PATH}/images/{filename}'# here the images need to link to the / of the domain, for flask :/// confusing! this breaks the whole idea to still be able to make a local copy of the file
matches=re.findall(rf'src="/book/images/.*?px-{filename}"',html)# for debugging
matches=re.findall(rf'src="/images/.*?px-{filename}"',html)# for debugging