From 16a9c5c638e048e8c747a6d6b56f652b68ed34e6 Mon Sep 17 00:00:00 2001 From: Thomas Wade Date: Thu, 27 Sep 2018 17:02:08 +0930 Subject: [PATCH] Set default MAX_DEGREE to 2 --- scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrape.py b/scrape.py index 0e9261e..2e4275e 100755 --- a/scrape.py +++ b/scrape.py @@ -12,7 +12,7 @@ CHROMEDRIVER_PATH = '/usr/bin/chromedriver' # ^0 ^1 ^2 # User is zero hops away from itself, so it's degree is zero. # Follower is one hop away from User, so it's degree is one, and so on. -MAX_DEGREE = 0 +MAX_DEGREE = 2 # The list of starting users. Can be as many or as few as you would like. # Bear in mind that each additional user will greatly increase run time, depending