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')