9 lines
702 B
Python
9 lines
702 B
Python
failedToScan="Failed to scan your link! This may be due to an incorrect link, private account, or the twitter API itself might be having issues (Check here: https://api.twitterstat.us/)\nIt's also possible that Twitter is API limiting me, in which case I can't do anything about it."
|
|
|
|
|
|
def genLikesDisplay(vnf):
|
|
return ("\n\n💖 " + str(vnf['likes']) + " 🔁 " + str(vnf['rts']) + "\n")
|
|
|
|
def genQrtDisplay(qrt):
|
|
verifiedCheck = "☑️" if ('verified' in qrt and qrt['verified']) else ""
|
|
return ("\n─────────────\n ➤ QRT of " + qrt['handle'] + " (@" + qrt['screen_name'] + ")"+ verifiedCheck+":\n─────────────\n'" + qrt['desc'] + "'") |