forked from tanner/qotnews
56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
# QotNews settings
|
|
# edit this file and save it as settings.py
|
|
|
|
# Feed Lengths
|
|
# Number of top items from each site to pull
|
|
# set to 0 to disable that site
|
|
NUM_HACKERNEWS = 15
|
|
NUM_REDDIT = 10
|
|
NUM_TILDES = 5
|
|
NUM_SUBSTACK = 10
|
|
|
|
# SITEMAP = {
|
|
# 'nzherald': { 'url': "https://www.nzherald.co.nz/arcio/news-sitemap/", 'count': 10},
|
|
# 'stuff': { 'url': "https://www.stuff.co.nz/sitemap.xml", 'count': 10},
|
|
# }
|
|
|
|
# SUBSTACK = {
|
|
# 'webworm': { 'url': "https://www.webworm.co", 'count': 10},
|
|
# 'the bulletin': { 'url': "https://thespinoff.substack.com", 'count': 10},
|
|
# }
|
|
|
|
# CATEGORY = {
|
|
# 'rnz national': { 'url': "https://www.rnz.co.nz/news/national", 'count': 10},
|
|
# }
|
|
|
|
# Reddit account info
|
|
# leave blank if not using Reddit
|
|
REDDIT_CLIENT_ID = ''
|
|
REDDIT_CLIENT_SECRET = ''
|
|
REDDIT_USER_AGENT = ''
|
|
|
|
SUBREDDITS = [
|
|
'Economics',
|
|
'AcademicPhilosophy',
|
|
'DepthHub',
|
|
'Foodforthought',
|
|
'HistoryofIdeas',
|
|
'LaymanJournals',
|
|
'PhilosophyofScience',
|
|
'PoliticsPDFs',
|
|
'Scholar',
|
|
'StateOfTheUnion',
|
|
'TheAgora',
|
|
'TrueFilm',
|
|
'TrueReddit',
|
|
'UniversityofReddit',
|
|
'culturalstudies',
|
|
'hardscience',
|
|
'indepthsports',
|
|
'indepthstories',
|
|
'ludology',
|
|
'neurophilosophy',
|
|
'resilientcommunities',
|
|
'worldevents',
|
|
]
|