Small log message when an unofficial API call succeeds

This commit is contained in:
Dylan 2022-06-03 23:27:33 +01:00
parent 174a20d896
commit 16dfc509d3

View file

@ -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)