【发布时间】:2018-09-27 15:31:16
【问题描述】:
我正在异步 python 中制作一个不和谐的机器人。 当我执行命令(前缀!)示例!meme 时,我希望机器人发布 随机 图片。这会从 subreddit 中调出一张随机图片,在本例中是 memes subreddit。我已经开始了我想要的,但我需要随机 subreddit 位的帮助。
import discord
import praw
from discord.ext import commands
bot = commands.Bot(description="test", command_prefix="!")
@bot.command()
async def meme():
await bot.say(---)
#--- WOULD BE THE REDDIT URL
bot.run("TOKEN")
我将如何使用 discord.py 和 PRAW 来做到这一点?
【问题讨论】:
-
我会先写一些代码,如果你有一个特定的编程问题,然后来这里问。
标签: python python-3.x discord discord.py praw