suchwow/suchwow/reddit.py

32 lines
850 B
Python
Raw Normal View History

from praw import Reddit
from suchwow import config
class Reddit(object):
def __init__(self):
self.reddit = Reddit(
2020-10-15 08:00:51 +01:00
client_id=config.PRAW_CLIENT_ID,
client_secret=config.PRAW_CLIENT_SECRET,
user_agent=config.PRAW_USER_AGENT,
username=config.PRAW_USERNAME,
password=config.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