Change methods order again

This commit is contained in:
Dylan 2024-05-17 22:16:20 +01:00
parent 637851282c
commit 1043239777

12
tokenTester.py Normal file
View File

@ -0,0 +1,12 @@
import twExtract
import vx_testdata
tokens = ""
tokensList = tokens.split(",")
for token in tokensList:
try:
twExtract.extractStatusV2(vx_testdata.testNSFWTweet,workaroundTokens=[token])
except Exception as e:
print(str(e)+" "+token)
pass