From 3e74ee84b13813cf6c1989023834df9a38e7a985 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 3 Nov 2021 18:59:28 -0400 Subject: [PATCH] [+] Test download tweets --- collect/twitter_individual.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/collect/twitter_individual.py b/collect/twitter_individual.py index c5c15c5..e494575 100644 --- a/collect/twitter_individual.py +++ b/collect/twitter_individual.py @@ -1,4 +1,4 @@ -from collect.twitter import tweepy_login, get_user_tweets +from collect.twitter import tweepy_login, download_user_tweets from collect.utils import * @@ -6,7 +6,5 @@ if __name__ == '__main__': conf = load_config() api = tweepy_login(conf) - tweets = get_user_tweets(api, 'voxdotcom') - - print(len(tweets)) + download_user_tweets(api, 'voxdotcom')