From 698967a29b95d056a9d2f67aad1394123426a4d6 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 24 Nov 2021 10:12:54 -0500 Subject: [PATCH] [-] Remove twitter-individual.py --- src/raw_collect/twitter_individual.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/raw_collect/twitter_individual.py diff --git a/src/raw_collect/twitter_individual.py b/src/raw_collect/twitter_individual.py deleted file mode 100644 index b9a5b08..0000000 --- a/src/raw_collect/twitter_individual.py +++ /dev/null @@ -1,19 +0,0 @@ -from tabulate import tabulate - -from process.twitter_process import * -from raw_collect.twitter import * -from utils import * - - -if __name__ == '__main__': - conf = load_config() - api = tweepy_login(conf) - - users = load_users()[:500] - - # Just curious, who are the 20 most popular individuals on twitter? - print(tabulate(((u.username, u.popularity) for u in users[:20]), headers=['Name', 'Followers'])) - - # Start download - for u in users: - download_all_tweets(api, u.username)