#python-3.x #discord #bots #gif #repl.it
Вопрос:
Я пытаюсь заставить своего базового бота discord отображать GIF с помощью python, как если бы пользователь отправлял его из тенора.
Т. Е.: пример gif
Мне удалось заставить своего бота отправить gif-файл, который можно открыть и просмотреть, но я хочу сделать еще один шаг вперед и показать gif в чате.
Пример
import discord
import io
import aiohttp
client = discord.Client()
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content == 'hello':
embed = discord.Embed(title="Title", description="Desc", color=0x00ff00) #creates embed
file = discord.File("toodamnbad.gif", filename="image.png")
embed.set_image(url="attachment://image.png")
await message.channel.send(file=file)
client.run('TOKEN')