From a1e13bb49a8e08c7c63e400ac3979df2836eeffe Mon Sep 17 00:00:00 2001 From: Dylan Date: Wed, 19 Jul 2023 16:22:23 +0100 Subject: [PATCH] Only use Syndication & V2 --- twExtract/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twExtract/__init__.py b/twExtract/__init__.py index 6daa543..de89467 100644 --- a/twExtract/__init__.py +++ b/twExtract/__init__.py @@ -161,7 +161,7 @@ def extractStatusV2Legacy(url): return tweet['legacy'] def extractStatus(url): - methods=[extractStatus_guestToken,extractStatus_syndication,extractStatus_token,extractStatusV2Legacy] + methods=[extractStatus_syndication,extractStatusV2Legacy] for method in methods: try: return method(url)