Skip to content

Instantly share code, notes, and snippets.

@danwalkeruk
Last active March 23, 2023 18:22
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save danwalkeruk/7b471a095c645f96456ec2dd3d4bc87f to your computer and use it in GitHub Desktop.
Save danwalkeruk/7b471a095c645f96456ec2dd3d4bc87f to your computer and use it in GitHub Desktop.
Script to post new subreddit posts to a Discord channel via webhook
# reddit-feed.py - posts new subreddit posts to a Discord channel via webhook
# author: Dan Walker
# email: code@danwalker.com
# url: https://danwalker.netlify.app/python-discord-reddit-feed/
# created: 2020-08-13
import requests
import json
import time
from discord_webhook import DiscordWebhook, DiscordEmbed
# open the cache, or start from a blank list
try:
with open('db.json') as json_file:
db = json.load(json_file)
except FileNotFoundError:
db = []
webhook_url = "https://discord.com/api/webhooks/YOUR_WEBHOOK_HERE"
subreddit = 'discordapp' # can be chained with + (example: python+webdev)
req = requests.get(f'https://www.reddit.com/r/{subreddit}/new/.json', headers={
"Cache-Control": "no-cache",
"Pragma": "no-cache",
"User-Agent": "discord-feed-bot"})
posts = req.json()['data']['children']
# for each new post found in this request
for post in posts:
if post['data']['name'] not in db:
webhook = DiscordWebhook(url=webhook_url)
permalink = f"https://www.reddit.com{post['data']['permalink']}"
# create an appropriate embed object
if post['data']['thumbnail'] == 'self': # text post
embed = DiscordEmbed(title=post['data']['title'], url=permalink, description=post['data']['selftext'])
embed.set_footer(text=f"Posted by {post['data']['author']}")
elif post['data']['is_video']: # video post
embed = DiscordEmbed(title=post['data']['title'], url=permalink)
embed.set_image(url=post['data']['thumbnail'])
embed.set_footer(text=f"Video posted by {post['data']['author']}")
else: # image post
embed = DiscordEmbed(title=post['data']['title'], url=permalink)
embed.set_image(url=post['data']['url'])
embed.set_footer(text=f"Image posted by {post['data']['author']}")
# attach the embed to the webhook request and go!
webhook.add_embed(embed)
webhook.execute()
time.sleep(1) # to prevent Discord webhook rate limiting
# add post name to DB so we don't display it again
db.append(post['data']['name'])
# save the cache of (at least) the last 50 posts seen
with open('db.json', 'w') as outfile:
json.dump(db[-50:], outfile)
@killaxia
Copy link

killaxia commented Oct 27, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment