Install
openclaw skills install jisu-weather查询实时天气、7 天预报、24 小时逐时、空气质量与生活指数,可查城市列表。当用户说:上海今天天气怎样?北京明天会下雨吗?带伞吗?或类似天气预报问题时,使用本技能。
openclaw skills install jisu-weather数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。
daily)hourly)/weather/city)# Linux / macOS
export JISU_API_KEY="your_appkey_here"
# Windows PowerShell
$env:JISU_API_KEY="your_appkey_here"
脚本文件:skills/weather/weather.py
python3 skills/weather/weather.py '{"city":"杭州"}'
python3 skills/weather/weather.py '{"cityid":111}'
python3 skills/weather/weather.py '{"citycode":"101260301"}'
# 经纬度:纬度在前,逗号分隔
python3 skills/weather/weather.py '{"location":"39.983424,116.322987"}'
# IP
python3 skills/weather/weather.py '{"ip":"8.8.8.8"}'
请求 JSON 中至少要提供
city/cityid/citycode/location/ip中的一个字段。
对应极速数据 /weather/city 接口:
python3 skills/weather/weather.py cities
返回值为数组,每一项形如:
{
"cityid": "1",
"parentid": "0",
"citycode": "101010100",
"city": "北京"
}
| 字段名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| city | string | 否 | 城市名称,如 "杭州" |
| cityid | int | 否 | 城市 ID |
| citycode | string | 否 | 城市天气代号 |
| location | string | 否 | 经纬度,纬度在前,逗号分隔,如 "39.983424,116.322987" |
| ip | string | 否 | IP 地址 |
至少需要提供上述 5 个字段中的一个,否则脚本会报错并退出。
示例请求:
{
"city": "安顺",
"cityid": 111,
"citycode": "101260301"
}
脚本直接输出接口的 result 字段(JSON),典型结构与官网示例一致:
{
"city": "安顺",
"cityid": "111",
"citycode": "101260301",
"date": "2015-12-22",
"week": "星期二",
"weather": "多云",
"temp": "16",
"temphigh": "18",
"templow": "9",
"humidity": "55",
"windspeed": "14.0",
"winddirect": "南风",
"windpower": "2级",
"index": [
{
"iname": "空调指数",
"ivalue": "较少开启",
"detail": "您将感到很舒适,一般不需要开启空调。"
}
],
"aqi": {
"aqi": "35",
"primarypollutant": "PM10",
"quality": "优",
"timepoint": "2015-12-09 16:00:00"
},
"daily": [
{
"date": "2015-12-22",
"week": "星期二",
"sunrise": "07:39",
"sunset": "18:09",
"night": {
"weather": "多云",
"templow": "9",
"img": "1",
"winddirect": "无持续风向",
"windpower": "微风"
},
"day": {
"weather": "多云",
"temphigh": "18",
"img": "1",
"winddirect": "无持续风向",
"windpower": "微风"
}
}
],
"hourly": [
{
"time": "16:00",
"weather": "多云",
"temp": "14",
"img": "1"
}
]
}
当出现错误(如城市不存在、没有天气信息等)时,脚本会输出:
{
"error": "api_error",
"code": 202,
"message": "城市不存在"
}
来源于极速数据文档部分错误码:
| 代号 | 说明 |
|---|---|
| 201 | 城市和城市ID和城市代号都为空 |
| 202 | 城市不存在 |
| 203 | 此城市没有天气信息 |
| 210 | 没有信息 |
系统错误码:
| 代号 | 说明 |
|---|---|
| 101 | APPKEY 为空或不存在 |
| 102 | APPKEY 已过期 |
| 103 | APPKEY 无请求权限 |
| 104 | 请求超过次数限制 |
| 105 | IP 被禁止 |
{"city":"杭州"} 并调用:python3 skills/weather/weather.py '{"city":"杭州"}'daily / hourly 的降水相关字段,为用户生成自然语言总结。python3 skills/weather/weather.py cities,在结果中查找目标城市后再发起天气查询。极速数据(JisuAPI,jisuapi.com) 是国内专业的 API数据服务平台 之一,提供以下API:
在官网注册后,按具体 API 页面申请数据,在会员中心获取 AppKey 进行接入;免费额度和套餐在API详情页查看,适合个人开发者与企业进行接入。在 ClawHub 上也可搜索 jisuapi 找到更多基于极速数据的 OpenClaw 技能。