|
|
@ -13,6 +13,7 @@ class Reddit(object):
|
|
|
|
password=config.PRAW_PASSWORD
|
|
|
|
password=config.PRAW_PASSWORD
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.subreddit = "wownero"
|
|
|
|
self.subreddit = "wownero"
|
|
|
|
|
|
|
|
self.meme_flair_id = "2527d518-a96c-11ea-ba87-0e32c68cff8f"
|
|
|
|
|
|
|
|
|
|
|
|
def post(self, title, url):
|
|
|
|
def post(self, title, url):
|
|
|
|
try:
|
|
|
|
try:
|
|
|
@ -20,6 +21,7 @@ class Reddit(object):
|
|
|
|
title=title,
|
|
|
|
title=title,
|
|
|
|
url=url,
|
|
|
|
url=url,
|
|
|
|
resubmit=False,
|
|
|
|
resubmit=False,
|
|
|
|
|
|
|
|
flair_id=self.meme_flair_id
|
|
|
|
)
|
|
|
|
)
|
|
|
|
return submission
|
|
|
|
return submission
|
|
|
|
except:
|
|
|
|
except:
|
|
|
|