“Meme Command Discord.py” Kod odpowiedzi

Meme Command Discord.py

@client.command(pass_context=True)
async def meme(ctx):
    embed = discord.Embed(title="", description="")

    async with aiohttp.ClientSession() as cs:
        async with cs.get('https://www.reddit.com/r/dankmemes/new.json?sort=hot') as r:
            res = await r.json()
            embed.set_image(url=res['data']['children'] [random.randint(0, 25)]['data']['url'])
            await ctx.send(embed=embed)
Long Lark

Discord Bot Python Meme Command

@client.command(pass_context=True)
async def meme(ctx):
    embed = discord.Embed(title="", description="")

    async with aiohttp.ClientSession() as cs:
        async with cs.get('https://www.reddit.com/r/dankmemes/new.json?sort=hot') as r:
            res = await r.json()
            embed.set_image(url=res['data']['children'] [random.randint(0, 25)]['data']['url'])
            await ctx.send(embed=embed)
Thecodecopyer

Odpowiedzi podobne do “Meme Command Discord.py”

Pytania podobne do “Meme Command Discord.py”

Więcej pokrewnych odpowiedzi na “Meme Command Discord.py” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu