include meme flair when posting to reddit

This commit is contained in:
lza_menace 2021-05-07 12:54:54 -07:00
parent c46a817eed
commit 00a97eb686
1 changed files with 2 additions and 0 deletions

View File

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