Discord Python-OpenWeatherAPI解析天气数据

时间:2020-10-20 11:23:58

标签: python json discord.py discord.py-rewrite

我正在为我的机器人发出一个Weather命令,但是我无法使用请求来解析天气部分,(是的,我对它做了.json()),代码:

import requests
import discord
import random

from discord import Embed
from discord.ext import commands

colour = random.randint(0x000000, 0xffffff)

class Weather(commands.Cog):
    def __init__(self, client):
        self.client = client

    @commands.command()
    async def weather(self, ctx, *, location: str=None):
        if location:
            result = requests.get(f"http://api.openweathermap.org/data/2.5/weather?q={location}&APPID=APP ID").json()
            embed = (discord.Embed(title=f"{location} Weather",
                                    description=result,
                                    colour=colour))
            location = result["name"]
            temp = result["main"]["temp"]
            wind_speed = result["wind"]["speed"]
            visibility = result["visibility"]
            weather = result["weather"]["main"]
            description = result["weather"]["description"]
            feels_like = result["main"]["feels_like"]

            await ctx.send(f"{location}\n{temp}\n{wind_speed}\n{visibility}\n{weather}\n{description}\n{feels_like}\n")
        else:
            await ctx.send("Please provide me with a location.")

def setup(client):
    client.add_cog(Weather(client))

当我尝试解析天气时,它引发了一个错误。

discord.ext.commands.errors.CommandInvokeError:命令引发了一个异常:TypeError:列表索引必须是整数或切片,而不是str

我不知道为什么。但是,当我尝试对其进行格式化时,天气部分会出现“ []” enter image description here

我不知道如何解析。

1 个答案:

答案 0 :(得分:0)

@arundeepchohan提供。 我只需要使其索引即可(在第二个索引之前添加[0]) 再次感谢您@arundeepchohan