forked from tanner/qotnews
Merge remote-tracking branch 'tanner/master' into master
And adding relevant setings.py.example/etc.
This commit is contained in:
commit
5f98a2e76a
12
README.md
12
README.md
|
@ -35,7 +35,7 @@ $ source env/bin/activate
|
|||
(env) $ pip install -r requirements.txt
|
||||
```
|
||||
|
||||
Configure Praw for your Reddit account:
|
||||
Configure Praw for your Reddit account (optional):
|
||||
|
||||
* Go to https://www.reddit.com/prefs/apps
|
||||
* Click "Create app"
|
||||
|
@ -44,16 +44,14 @@ Configure Praw for your Reddit account:
|
|||
* Description: blank
|
||||
* About URL: blank
|
||||
* Redirect URL: your GitHub profile
|
||||
* Submit, copy the client ID and client secret into `praw.ini`:
|
||||
* Submit, copy the client ID and client secret into `settings.py` below
|
||||
|
||||
```text
|
||||
(env) $ vim praw.ini
|
||||
[bot]
|
||||
client_id=paste here
|
||||
client_secret=paste here
|
||||
user_agent=script by github/your-username-here
|
||||
(env) $ vim settings.py.example
|
||||
```
|
||||
|
||||
Edit it and save it as `settings.py`.
|
||||
|
||||
Now you can run the server:
|
||||
|
||||
```text
|
||||
|
|
2
apiserver/.gitignore
vendored
2
apiserver/.gitignore
vendored
|
@ -105,7 +105,7 @@ ENV/
|
|||
# DB
|
||||
db.sqlite3
|
||||
|
||||
praw.ini
|
||||
settings.py
|
||||
data.db
|
||||
data.db.bak
|
||||
data/archive/*
|
||||
|
|
|
@ -7,6 +7,7 @@ import requests
|
|||
import time
|
||||
from bs4 import BeautifulSoup
|
||||
|
||||
import settings
|
||||
from feeds import hackernews, reddit, tildes, substack, manual, sitemap
|
||||
|
||||
OUTLINE_API = 'https://api.outline.com/v3/parse_article'
|
||||
|
@ -22,14 +23,30 @@ nzherald = sitemap.Sitemap("https://www.nzherald.co.nz/arcio/news-sitemap/")
|
|||
|
||||
def list():
|
||||
feed = []
|
||||
feed += [(x, 'hackernews') for x in hackernews.feed()[:10]]
|
||||
feed += [(x, 'tildes') for x in tildes.feed()[:10]]
|
||||
feed += [(x, 'stuff') for x in stuff.feed()[:10]]
|
||||
feed += [(x, 'nzherald') for x in nzherald.feed()[:10]]
|
||||
feed += [(x, 'substack') for x in substack.top.feed()[:15]]
|
||||
feed += [(x, 'reddit') for x in reddit.feed()[:15]]
|
||||
feed += [(x, 'webworm') for x in webworm.feed()[:15]]
|
||||
feed += [(x, 'the bulletin') for x in bulletin.feed()[:15]]
|
||||
if settings.NUM_HACKERNEWS:
|
||||
feed += [(x, 'hackernews') for x in hackernews.feed()[:settings.NUM_HACKERNEWS]]
|
||||
|
||||
if settings.NUM_REDDIT:
|
||||
feed += [(x, 'reddit') for x in reddit.feed()[:settings.NUM_REDDIT]]
|
||||
|
||||
if settings.NUM_TILDES:
|
||||
feed += [(x, 'tildes') for x in tildes.feed()[:settings.NUM_TILDES]]
|
||||
|
||||
if settings.NUM_SUBSTACK:
|
||||
feed += [(x, 'substack') for x in substack.top.feed()[:settings.NUM_SUBSTACK]]
|
||||
|
||||
if settings.NUM_STUFF:
|
||||
feed += [(x, 'stuff') for x in stuff.feed()[:settings.NUM_STUFF]]
|
||||
|
||||
if settings.NUM_NZHERALD:
|
||||
feed += [(x, 'nzherald') for x in nzherald.feed()[:settings.NUM_NZHERALD]]
|
||||
|
||||
if settings.NUM_WEBWORM:
|
||||
feed += [(x, 'webworm') for x in webworm.feed()[:settings.NUM_WEBWORM]]
|
||||
|
||||
if settings.NUM_BULLETIN:
|
||||
feed += [(x, 'the bulletin') for x in bulletin.feed()[:settings.NUM_BULLETIN]]
|
||||
|
||||
return feed
|
||||
|
||||
def get_article(url):
|
||||
|
|
|
@ -12,18 +12,24 @@ from praw.exceptions import PRAWException
|
|||
from praw.models import MoreComments
|
||||
from prawcore.exceptions import PrawcoreException
|
||||
|
||||
import settings
|
||||
from utils import render_md, clean
|
||||
|
||||
SUBREDDITS = 'newzealand'
|
||||
|
||||
SITE_LINK = lambda x : 'https://old.reddit.com{}'.format(x)
|
||||
SITE_AUTHOR_LINK = lambda x : 'https://old.reddit.com/u/{}'.format(x)
|
||||
|
||||
reddit = praw.Reddit('bot')
|
||||
if settings.NUM_REDDIT:
|
||||
reddit = praw.Reddit(
|
||||
client_id=settings.REDDIT_CLIENT_ID,
|
||||
client_secret=settings.REDDIT_CLIENT_SECRET,
|
||||
user_agent=settings.REDDIT_USER_AGENT,
|
||||
)
|
||||
|
||||
subs = '+'.join(settings.SUBREDDITS)
|
||||
|
||||
def feed():
|
||||
try:
|
||||
return [x.id for x in reddit.subreddit(SUBREDDITS).hot()]
|
||||
return [x.id for x in reddit.subreddit(subs).hot()]
|
||||
except KeyboardInterrupt:
|
||||
raise
|
||||
except PRAWException as e:
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
[bot]
|
||||
client_id=
|
||||
client_secret=
|
||||
user_agent=
|
45
apiserver/settings.py.example
Normal file
45
apiserver/settings.py.example
Normal file
|
@ -0,0 +1,45 @@
|
|||
# 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
|
||||
NUM_WEBWORM = 0
|
||||
NUM_NZHERALD = 0
|
||||
NUM_STUFF = 0
|
||||
NUM_BULLETIN = 0
|
||||
|
||||
# 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',
|
||||
]
|
Loading…
Reference in New Issue
Block a user