From b55b4f3e4cebb0774db2a5c00182558c1a2af727 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 22 Nov 2021 00:24:56 -0500 Subject: [PATCH] Revert "[-] Remove testing script" This reverts commit 963256ce167c2e0f089b52bb8af06d8363ce403d. --- src/raw_collect/twitter_individual.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/raw_collect/twitter_individual.py diff --git a/src/raw_collect/twitter_individual.py b/src/raw_collect/twitter_individual.py new file mode 100644 index 0000000..4074af0 --- /dev/null +++ b/src/raw_collect/twitter_individual.py @@ -0,0 +1,10 @@ +from collect.twitter import tweepy_login, download_user_tweets +from collect.utils import * + + +if __name__ == '__main__': + conf = load_config() + api = tweepy_login(conf) + + download_user_tweets(api, 'sauricat') +