diff --git a/main.py b/main.py index 0b35c06..2ebb907 100755 --- a/main.py +++ b/main.py @@ -5,7 +5,7 @@ from dotenv import load_dotenv from reddit.subreddit import get_subreddit_threads from utils.cleanup import cleanup -from utils.console import print_markdown +from utils.console import print_markdown, print_step from video_creation.background import download_background, chop_background_video from video_creation.final_video import make_final_video from video_creation.screenshot_downloader import download_screenshots_of_reddit_posts @@ -36,6 +36,9 @@ def main(): def run_many(times): for x in range(times): + print_step( + f'on the {x}{("st" if x == 1 else ("nd" if x == 2 else ("rd" if x == 3 else "th")))} iteration') # correct 1st 2nd 3rd 4th 5th.... + os.system('cls' if os.name == 'nt' else 'clear') # clear terminal main() diff --git a/video_creation/data/.gitignore b/video_creation/data/.gitignore new file mode 100644 index 0000000..f96efd4 --- /dev/null +++ b/video_creation/data/.gitignore @@ -0,0 +1 @@ +videos.json diff --git a/video_creation/data/videos.json b/video_creation/data/videos.json deleted file mode 100644 index fe51488..0000000 --- a/video_creation/data/videos.json +++ /dev/null @@ -1 +0,0 @@ -[]