|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from abc import ABC |
|
import pandas as pd |
|
import requests |
|
from agent.component.base import ComponentBase, ComponentParamBase |
|
|
|
|
|
class QWeatherParam(ComponentParamBase): |
|
""" |
|
Define the QWeather component parameters. |
|
""" |
|
|
|
def __init__(self): |
|
super().__init__() |
|
self.web_apikey = "xxx" |
|
self.lang = "zh" |
|
self.type = "weather" |
|
self.user_type = 'free' |
|
self.error_code = { |
|
"204": "The request was successful, but the region you are querying does not have the data you need at this time.", |
|
"400": "Request error, may contain incorrect request parameters or missing mandatory request parameters.", |
|
"401": "Authentication fails, possibly using the wrong KEY, wrong digital signature, wrong type of KEY (e.g. using the SDK's KEY to access the Web API).", |
|
"402": "Exceeded the number of accesses or the balance is not enough to support continued access to the service, you can recharge, upgrade the accesses or wait for the accesses to be reset.", |
|
"403": "No access, may be the binding PackageName, BundleID, domain IP address is inconsistent, or the data that requires additional payment.", |
|
"404": "The queried data or region does not exist.", |
|
"429": "Exceeded the limited QPM (number of accesses per minute), please refer to the QPM description", |
|
"500": "No response or timeout, interface service abnormality please contact us" |
|
} |
|
|
|
self.time_period = 'now' |
|
|
|
def check(self): |
|
self.check_empty(self.web_apikey, "BaiduFanyi APPID") |
|
self.check_valid_value(self.type, "Type", ["weather", "indices", "airquality"]) |
|
self.check_valid_value(self.user_type, "Free subscription or paid subscription", ["free", "paid"]) |
|
self.check_valid_value(self.lang, "Use language", |
|
['zh', 'zh-hant', 'en', 'de', 'es', 'fr', 'it', 'ja', 'ko', 'ru', 'hi', 'th', 'ar', 'pt', |
|
'bn', 'ms', 'nl', 'el', 'la', 'sv', 'id', 'pl', 'tr', 'cs', 'et', 'vi', 'fil', 'fi', |
|
'he', 'is', 'nb']) |
|
self.check_valid_value(self.time_period, "Time period", ['now', '3d', '7d', '10d', '15d', '30d']) |
|
|
|
|
|
class QWeather(ComponentBase, ABC): |
|
component_name = "QWeather" |
|
|
|
def _run(self, history, **kwargs): |
|
ans = self.get_input() |
|
ans = "".join(ans["content"]) if "content" in ans else "" |
|
if not ans: |
|
return QWeather.be_output("") |
|
|
|
try: |
|
response = requests.get( |
|
url="https://geoapi.qweather.com/v2/city/lookup?location=" + ans + "&key=" + self._param.web_apikey).json() |
|
if response["code"] == "200": |
|
location_id = response["location"][0]["id"] |
|
else: |
|
return QWeather.be_output("**Error**" + self._param.error_code[response["code"]]) |
|
|
|
base_url = "https://api.qweather.com/v7/" if self._param.user_type == 'paid' else "https://devapi.qweather.com/v7/" |
|
|
|
if self._param.type == "weather": |
|
url = base_url + "weather/" + self._param.time_period + "?location=" + location_id + "&key=" + self._param.web_apikey + "&lang=" + self._param.lang |
|
response = requests.get(url=url).json() |
|
if response["code"] == "200": |
|
if self._param.time_period == "now": |
|
return QWeather.be_output(str(response["now"])) |
|
else: |
|
qweather_res = [{"content": str(i) + "\n"} for i in response["daily"]] |
|
if not qweather_res: |
|
return QWeather.be_output("") |
|
|
|
df = pd.DataFrame(qweather_res) |
|
return df |
|
else: |
|
return QWeather.be_output("**Error**" + self._param.error_code[response["code"]]) |
|
|
|
elif self._param.type == "indices": |
|
url = base_url + "indices/1d?type=0&location=" + location_id + "&key=" + self._param.web_apikey + "&lang=" + self._param.lang |
|
response = requests.get(url=url).json() |
|
if response["code"] == "200": |
|
indices_res = response["daily"][0]["date"] + "\n" + "\n".join( |
|
[i["name"] + ": " + i["category"] + ", " + i["text"] for i in response["daily"]]) |
|
return QWeather.be_output(indices_res) |
|
|
|
else: |
|
return QWeather.be_output("**Error**" + self._param.error_code[response["code"]]) |
|
|
|
elif self._param.type == "airquality": |
|
url = base_url + "air/now?location=" + location_id + "&key=" + self._param.web_apikey + "&lang=" + self._param.lang |
|
response = requests.get(url=url).json() |
|
if response["code"] == "200": |
|
return QWeather.be_output(str(response["now"])) |
|
else: |
|
return QWeather.be_output("**Error**" + self._param.error_code[response["code"]]) |
|
except Exception as e: |
|
return QWeather.be_output("**Error**" + str(e)) |
|
|