From 1af5182f91619663a1ad4d94481c3f6ae6a886ea Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 3 Nov 2021 16:00:05 -0400 Subject: [PATCH] [+] Get tweets from inidivdual --- collect/twitter_individual.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/collect/twitter_individual.py b/collect/twitter_individual.py index 24dcf05..79cb412 100644 --- a/collect/twitter_individual.py +++ b/collect/twitter_individual.py @@ -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)