From 0186aa185ffb71e44e8cbe639b6dc7150229ade8 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 22 Nov 2021 12:36:20 -0500 Subject: [PATCH] [+] Step C2 of data collection --- src/main.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/main.py b/src/main.py index d5e2704..275caee 100644 --- a/src/main.py +++ b/src/main.py @@ -33,10 +33,5 @@ if __name__ == '__main__': print(tabulate(((u.username, u.popularity) for u in users[:20]), headers=['Name', 'Followers'])) # Start download - download_all_tweets(api, 'sauricat') - - ##################### - # Data collection - Step C2 - # Download as many posts of the most popular individuals as possible. - - + for u in users: + download_all_tweets(api, u.username)