From 16dfc509d32fe6667a43f9008daf9031bf93a1c4 Mon Sep 17 00:00:00 2001 From: Dylan Date: Fri, 3 Jun 2022 23:27:33 +0100 Subject: [PATCH] Small log message when an unofficial API call succeeds --- twitfix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/twitfix.py b/twitfix.py index 1982ec5..94ee12e 100644 --- a/twitfix.py +++ b/twitfix.py @@ -389,6 +389,7 @@ def link_to_vnf_from_tweet_data(tweet,video_link): def link_to_vnf_from_unofficial_api(video_link): print(" ➤ [ + ] Attempting to download tweet info from UNOFFICIAL Twitter API") tweet = twExtract.extractStatus(video_link) + print (" ➤ [ ✔ ] Unofficial API Success") return link_to_vnf_from_tweet_data(tweet,video_link)