setup praw and commands to post to reddit
parent
d29874a92d
commit
bc0d83b832
@ -0,0 +1,31 @@
|
||||
from praw import Reddit
|
||||
from suchwow import config
|
||||
|
||||
|
||||
class Reddit(object):
|
||||
def __init__(self):
|
||||
self.reddit = Reddit(
|
||||
client_id=config.get("PRAW_CLIENT_ID"),
|
||||
client_secret=config.get("PRAW_CLIENT_SECRET"),
|
||||
user_agent=config.get("PRAW_USER_AGENT"),
|
||||
username=config.get("PRAW_USERNAME"),
|
||||
password=config.get("PRAW_PASSWORD")
|
||||
)
|
||||
self.subreddit = "wownero"
|
||||
|
||||
def post(title, url):
|
||||
try:
|
||||
submission = reddit.subreddit(self.subreddit).submit(
|
||||
title=title,
|
||||
url=url,
|
||||
resubmit=False,
|
||||
)
|
||||
return submission
|
||||
except:
|
||||
return False
|
||||
|
||||
def comment(submission, post):
|
||||
try:
|
||||
submission.reply(f"Show this post love by sending WOW: {post.id}")
|
||||
except:
|
||||
return False
|
Loading…
Reference in New Issue