Compare commits

...

2 Commits

Author SHA1 Message Date
Alan Orth f3224bee2e
generate.py: log actions after they complete
I guess this is a convention.
2024-02-28 07:49:54 +03:00
Alan Orth 9a0acd3717
generate.py: error logging should be red
If we're going to have colors at all, they should be consistent.
2024-02-28 07:46:09 +03:00
1 changed files with 12 additions and 10 deletions

View File

@ -25,7 +25,7 @@ def create_thumbnail(animal):
# check if the file has been downloaded
if not os.path.isfile(image_path):
logger.error(
Fore.YELLOW + f"> Missing image for {animal['common_name']}." + Fore.RESET
Fore.RED + f"> Missing image for {animal['common_name']}." + Fore.RESET
)
# check if we already have a thumbnail
elif os.path.isfile(thumbnail_path):
@ -36,11 +36,6 @@ def create_thumbnail(animal):
+ Fore.RESET
)
else:
logger.info(
Fore.GREEN
+ f"> Creating thumbnail for {animal['common_name']}..."
+ Fore.RESET
)
vips_image = pyvips.Image.new_from_file(image_path)
# Crop to a 600x600 square using smartcrop to focus attention
# See: https://stackoverflow.com/questions/47852390/making-a-huge-image-mosaic-with-pyvips
@ -71,6 +66,13 @@ def create_thumbnail(animal):
# conversion twice.
vips_thumbnail.vipssave(thumbnail_path, strip=True)
logger.info(
Fore.GREEN
+ f"> Created thumbnail for {animal['common_name']}..."
+ Fore.RESET
)
return
@ -87,10 +89,6 @@ def download_image(animal):
+ Fore.RESET
)
else:
logger.info(
Fore.GREEN + f"> Downloading {animal['common_name']}..." + Fore.RESET
)
headers = {
"User-Agent": "safari-bingo-cards-bot/0.1 (https://git.mjanja.ch/alanorth/safari-bingo-cards)"
}
@ -99,6 +97,10 @@ def download_image(animal):
with open(image_path, "wb") as fd:
for chunk in response:
fd.write(chunk)
logger.info(
Fore.GREEN + f"> Downloaded {animal['common_name']}..." + Fore.RESET
)
else:
logger.error(
Fore.RED