mirror of
https://github.com/aljazceru/Image-Quote-Generator.git
synced 2025-12-18 22:44:27 +01:00
add TOPIC option and fitness + organize files
This commit is contained in:
9
main.py
9
main.py
@@ -1,14 +1,17 @@
|
||||
import post_handler
|
||||
import helper_images
|
||||
|
||||
# Available topics: christian, fitness
|
||||
TOPIC = "christian"
|
||||
|
||||
# Define the paths and values to everything
|
||||
number_of_posts = 119
|
||||
images_folder = "C:/Bots/ChristianPostMaker/sources/images"
|
||||
images_folder = f"C:/Bots/ChristianPostMaker/sources/images/{TOPIC}"
|
||||
images_folder_cropped = f"{images_folder}/cropped"
|
||||
images_folder_cropped_darken = f"{images_folder_cropped}/darken"
|
||||
text_file = "C:/Bots/ChristianPostMaker/sources/quotes.txt"
|
||||
text_file = f"C:/Bots/ChristianPostMaker/sources/text_data/{TOPIC}.txt"
|
||||
font_dir = "C:/Users/samla/AppData/Local/Microsoft/Windows/Fonts/MouldyCheeseRegular-WyMWG.ttf"
|
||||
output_folder = "C:/Bots/ChristianPostMaker/customers"
|
||||
output_folder = f"C:/Bots/ChristianPostMaker/customers/{TOPIC}"
|
||||
logo_file = "C:/Bots/ChristianPostMaker/sources/logo.png"
|
||||
customer_name = "no_logo"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user