Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update config.py.template #16

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions config.py.template
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
MAX_DEPTH = 10 # maximum click depth
MAX_DEPTH = 5 # maximum click depth
MIN_DEPTH = 3 # minimum click depth
MAX_WAIT = 10 # maximum amount of time to wait between HTTP requests
MIN_WAIT = 5 # minimum amount of time allowed between HTTP requests
DEBUG = False # set to True to enable useful console output
DEBUG = True # set to True to enable useful console output

# use this single item list to test how a site responds to this crawler
# be sure to comment out the list below it.
#ROOT_URLS = ["https:///digg.com/"]
#ROOT_URLS = ["http://unilogistics.vn/"]

ROOT_URLS = [
"https://digg.com/",
"http://unilogistics.vn",
"https://www.yahoo.com",
"https://www.reddit.com",
"http://www.cnn.com",
Expand Down