[+] Get tweets from inidivdual

This commit is contained in:
Hykilpikonna
2021-11-03 16:00:05 -04:00
parent 00be8d7d40
commit 1af5182f91
+6
View File
@@ -2,11 +2,17 @@ import os
import json5
import tweepy
from tweepy.models import Status
from collect.utils import *
if __name__ == '__main__':
conf = load_config()
api = tweepy_login(conf)
tweets: list[Status] = api.user_timeline(screen_name='voxdotcom', count=200, tweet_mode = 'extended')
for tweet in tweets:
print(tweet._json)