-
Notifications
You must be signed in to change notification settings - Fork 78
/
settings.py
27 lines (21 loc) · 1012 Bytes
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
search_keys = {
"username" : "",
"password" : "",
"keywords" : ["Data Scientist", "Data Analyst"],
"locations" : ["San Francisco Bay Area", "Greater New York City Area"],
# specify the search radius from 'location' in miles:
# '10', '25', '35', '50', '75', '100'
"search_radius" : "50",
# go to page number in results. Helps if an error occurred in a
# previous attempt, user can pick up where left off. Set it
# to '1' if no results page number need be specified.
"page_number" : 1,
# specify date range: 'All', '1', '2-7', '8-14', '15-30'
"date_range" : "All",
# sort by either 'Relevance' or 'Date Posted'
"sort_by" : "Date Posted",
# specify salary range: 'All', '40+', '60+', '80+', '100+', '120+', '140+', '160+', '180+', '200+'
"salary_range" : "All",
# data is written to file in working directory as filename
"filename" : "output.txt"
}