From 67336b7d7c3aacc12c6911c0c24bdbebc99c5647 Mon Sep 17 00:00:00 2001 From: MstrPikachu <31784486+MstrPikachu@users.noreply.github.com> Date: Tue, 14 Dec 2021 00:09:25 -0500 Subject: [PATCH] Edit main.py running instructions --- src/main.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index 3b9c1fa..f8298c9 100644 --- a/src/main.py +++ b/src/main.py @@ -10,9 +10,13 @@ from utils import * from visualization import * if __name__ == '__main__': + ##################### + # Data collection - Step C1.0 # Load config and create API - conf = load_config('config.json5') - api = tweepy_login(conf) + # This is required if you would like to collect the data yourself. + # In that case, you also need to register for Twitter API keys and add them to config.json5 + # conf = load_config('config.json5') + # api = tweepy_login(conf) ##################### # Data collection - Step C1.1