From f621b9f1e22e01315817bab9186ae7f95bd0e1e8 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Sun, 14 Jul 2024 06:47:59 +0000 Subject: [PATCH] Add additional comments --- src/instawebhooks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/instawebhooks.py b/src/instawebhooks.py index 883d9d3..126a961 100644 --- a/src/instawebhooks.py +++ b/src/instawebhooks.py @@ -61,10 +61,11 @@ def discord_webhook_url(arg_value): logger.setLevel(logging.DEBUG) logger.debug("Verbose output enabled.") +# Log the start of the program logger.info("Starting InstaWebhooks for https://www.instagram.com/%s on %s", args.instagram_username, args.discord_webhook_url) -# Instaloader instance +# Initialize Instaloader and get the Instagram profile L = Instaloader() profile = Profile.from_username(L.context, args.instagram_username)