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)