{"id":19862775,"url":"https://github.com/pyunits/pyunit-weather","last_synced_at":"2025-12-14T15:36:50.664Z","repository":{"id":57458185,"uuid":"243907527","full_name":"pyunits/pyunit-weather","owner":"pyunits","description":"获取中央气象局的天气数据，官方天气预报。","archived":false,"fork":false,"pushed_at":"2024-05-21T05:54:23.000Z","size":443,"stargazers_count":12,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-06T22:38:36.574Z","etag":null,"topics":["python3","weather"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pyunits.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-02-29T05:01:40.000Z","updated_at":"2025-04-02T09:13:48.000Z","dependencies_parsed_at":"2024-01-18T00:40:23.177Z","dependency_job_id":"4d1c60c7-4923-4a0f-9812-bb945032564b","html_url":"https://github.com/pyunits/pyunit-weather","commit_stats":{"total_commits":6,"total_committers":2,"mean_commits":3.0,"dds":"0.16666666666666663","last_synced_commit":"8b138935ad2ff6bbf0dcb2026b40ae080b8eda59"},"previous_names":["pyunit/pyunit-weather"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyunits%2Fpyunit-weather","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyunits%2Fpyunit-weather/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyunits%2Fpyunit-weather/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyunits%2Fpyunit-weather/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyunits","download_url":"https://codeload.github.com/pyunits/pyunit-weather/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251986735,"owners_count":21675950,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python3","weather"],"created_at":"2024-11-12T15:12:39.280Z","updated_at":"2025-12-14T15:36:50.637Z","avatar_url":"https://github.com/pyunits.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **pyUnit-weather** [![](https://gitee.com/tyoui/logo/raw/master/logo/photolog.png)][1]\n\n## 获取中央气象局的天气数据\n[![](https://img.shields.io/badge/Python-3.7-green.svg)](https://pypi.org/project/pyunit-weather/)\n\n\n### 安装\n    pip install pyunit-weather\n\n### 获取能预测天气的城市\n    https://github.com/PyUnit/pyunit-weather/blob/master/pyunit_weather/address.txt \n\n\n### 获取天气预报\n```python\nfrom pyunit_weather import Weather\nimport pprint\n\n\ndef test():\n    weather = Weather()\n    w = weather.get_city_weather(\"贵阳\")\n    # w = weather.get_county_weather(\"贵阳\")\n    pprint.pprint(w)\n\n\nif __name__ == \"__main__\":\n    test()\n```\n### json格式\n\n![基本信息](img/1.png)\n![七天预报](img/2.png)\n![精细预报](img/3.png)\n\n## 返回格式\n```json\n{\"七天天气预报\": [{\"日期\": \"今天\",\n             \"星期\": \"星期六\",\n             \"气象\": \"阴\",\n             \"温度\": \"11℃\",\n             \"风向\": \"东北风\",\n             \"风速\": \"微风\"},\n            {\"日期\": \"明 天\",\n             \"星期\": \"星期日\",\n             \"气象\": \"小雨\",\n             \"温度\": \"15℃\",\n             \"风向\": \"东北风\",\n             \"风速\": \"微风\"},\n            {\"日期\": \"后 天\",\n             \"星期\": \"星期一\",\n             \"气象\": \"小雨\",\n             \"温度\": \"14℃\",\n             \"风向\": \"东北风\",\n             \"风速\": \"微风\"},\n            {\"日期\": \"03月03日\",\n             \"星期\": \"星期二\",\n             \"气象\": \"小雨\",\n             \"温度\": \"10℃\",\n             \"风向\": \"东北风\",\n             \"风速\": \"微风\"},\n            {\"日期\": \"03月04日\",\n             \"星期\": \"星期三\",\n             \"气象\": \"阴\",\n             \"温度\": \"11℃\",\n             \"风向\": \"东风\",\n             \"风速\": \"微风\"},\n            {\"日期\": \"03月05日\",\n             \"星期\": \"星期四\",\n             \"气象\": \"小雨\",\n             \"温度\": \"10℃\",\n             \"风向\": \"东南风\",\n             \"风速\": \"微风\"},\n            {\"日期\": \"03月06日\",\n             \"星期\": \"星期五\",\n             \"气象\": \"小雨\",\n             \"温度\": \"16℃\",\n             \"风向\": \"南风\",\n             \"风速\": \"微风\"}],\n \"体感温度\": 9.6,\n \"发布时间\": \"2020-02-29 20:00\",\n \"城市\": \"贵阳\",\n \"本市警告\": {\"发行内容\": \"贵州省气象台2月29日15时30分发布雷电黄色预警信号：预计未来6小时，省的中部和南部地区将出现雷电天气，其中毕节市东南部、贵阳市南部、安顺市北部、黔南州中部和黔东南州西部雷雨中可能伴有短时强降水、大风、冰雹等强对流天气，请注意防范。\",\n          \"警告\": \"2020年02月29日15时贵州省发布雷电黄色预警\",\n          \"防御指南\": \"1.政府及相关部门按照职责做好防雷工作；2.密切关注天气，尽量避免户外活动。\"},\n \"标题\": \"贵阳-天气预报\",\n \"气温\": 12.4,\n \"温差\": -0.6,\n \"相对湿度\": 95.0,\n \"空气压力\": 876.0,\n \"空气质量指数\": 38,\n \"精细预报\": {\"第1天每3个小时预报\": [{\"云量\": \"100%\",\n                          \"时间\": \"23:00\",\n                          \"气压\": \"878hPa\",\n                          \"气温\": \"14.5℃\",\n                          \"相对湿度\": \"97%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"2米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"01日02:00\",\n                          \"气压\": \"877.7hPa\",\n                          \"气温\": \"14.8℃\",\n                          \"相对湿度\": \"98%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.3米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"05:00\",\n                          \"气压\": \"877.3hPa\",\n                          \"气温\": \"11.2℃\",\n                          \"相对湿度\": \"97.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"1.6米/秒\"},\n                         {\"云量\": \"96.9%\",\n                          \"时间\": \"08:00\",\n                          \"气压\": \"878.8hPa\",\n                          \"气温\": \"11.3℃\",\n                          \"相对湿度\": \"96.4%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.3米/秒\"},\n                         {\"云量\": \"99.1%\",\n                          \"时间\": \"11:00\",\n                          \"气压\": \"880.1hPa\",\n                          \"气温\": \"12.9℃\",\n                          \"相对湿度\": \"95.7%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.3毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.3米/秒\"},\n                         {\"云量\": \"98.3%\",\n                          \"时间\": \"14:00\",\n                          \"气压\": \"878.9hPa\",\n                          \"气温\": \"13.3℃\",\n                          \"相对湿度\": \"92.6%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.1毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.5米/秒\"},\n                         {\"云量\": \"95.9%\",\n                          \"时间\": \"17:00\",\n                          \"气压\": \"877.4hPa\",\n                          \"气温\": \"13.3℃\",\n                          \"相对湿度\": \"91.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.8毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.9米/秒\"},\n                         {\"云量\": \"99.9%\",\n                          \"时间\": \"20:00\",\n                          \"气压\": \"878.4hPa\",\n                          \"气温\": \"13.3℃\",\n                          \"相对湿度\": \"86.6%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.3毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"3.2米/秒\"}],\n          \"第2天每3个小时预报\": [{\"云量\": \"96.9%\",\n                          \"时间\": \"08:00\",\n                          \"气压\": \"878.8hPa\",\n                          \"气温\": \"11.3℃\",\n                          \"相对湿度\": \"96.4%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.3米/秒\"},\n                         {\"云量\": \"99.1%\",\n                          \"时间\": \"11:00\",\n                          \"气压\": \"880.1hPa\",\n                          \"气温\": \"12.9℃\",\n                          \"相对湿度\": \"95.7%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.3毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.3米/秒\"},\n                         {\"云量\": \"98.3%\",\n                          \"时间\": \"14:00\",\n                          \"气压\": \"878.9hPa\",\n                          \"气温\": \"13.3℃\",\n                          \"相对湿度\": \"92.6%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.1毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.5米/秒\"},\n                         {\"云量\": \"95.9%\",\n                          \"时间\": \"17:00\",\n                          \"气压\": \"877.4hPa\",\n                          \"气温\": \"13.3℃\",\n                          \"相对湿度\": \"91.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.8毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.9米/秒\"},\n                         {\"云量\": \"99.9%\",\n                          \"时间\": \"20:00\",\n                          \"气压\": \"878.4hPa\",\n                          \"气温\": \"13.3℃\",\n                          \"相对湿度\": \"86.6%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.3毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"3.2米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"23:00\",\n                          \"气压\": \"879.1hPa\",\n                          \"气温\": \"13.8℃\",\n                          \"相对湿度\": \"95.1%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.3毫米\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"2.5米/秒\"},\n                         {\"云量\": \"95.9%\",\n                          \"时间\": \"02日02:00\",\n                          \"气压\": \"877.6hPa\",\n                          \"气温\": \"13.3℃\",\n                          \"相对湿度\": \"95.3%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.9毫米\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"2米/秒\"},\n                         {\"云量\": \"95.2%\",\n                          \"时间\": \"05:00\",\n                          \"气压\": \"875.6hPa\",\n                          \"气温\": \"12.2℃\",\n                          \"相对湿度\": \"95.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.5毫米\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"2.3米/秒\"}],\n          \"第3天每3个小时预报\": [{\"云量\": \"99.5%\",\n                          \"时间\": \"08:00\",\n                          \"气压\": \"877hPa\",\n                          \"气温\": \"12℃\",\n                          \"相对湿度\": \"95.3%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.8毫米\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"1.9米/秒\"},\n                         {\"云量\": \"99.8%\",\n                          \"时间\": \"11:00\",\n                          \"气压\": \"878.3hPa\",\n                          \"气温\": \"10.3℃\",\n                          \"相对湿度\": \"95.1%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"2.4毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"1.9米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"14:00\",\n                          \"气压\": \"877.1hPa\",\n                          \"气温\": \"11.8℃\",\n                          \"相对湿度\": \"93.2%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"2.2毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"1.9米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"17:00\",\n                          \"气压\": \"876.1hPa\",\n                          \"气温\": \"10.8℃\",\n                          \"相对湿度\": \"88.8%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"2.2毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"3米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"20:00\",\n                          \"气压\": \"876.8hPa\",\n                          \"气温\": \"10.2℃\",\n                          \"相对湿度\": \"87.2%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.7毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"3.4米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"23:00\",\n                          \"气压\": \"878.7hPa\",\n                          \"气温\": \"7.9℃\",\n                          \"相对湿度\": \"96%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"4.1毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.5米/秒\"},\n                         {\"云量\": \"99.7%\",\n                          \"时间\": \"03日02:00\",\n                          \"气压\": \"877.5hPa\",\n                          \"气温\": \"7.3℃\",\n                          \"相对湿度\": \"93.8%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.1毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"2.9米/秒\"},\n                         {\"云量\": \"99.3%\",\n                          \"时间\": \"05:00\",\n                          \"气压\": \"877.1hPa\",\n                          \"气温\": \"7.2℃\",\n                          \"相对湿度\": \"93.2%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.9毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"2.8米/秒\"}],\n          \"第4天每3个小时预报\": [{\"云量\": \"96%\",\n                          \"时间\": \"08:00\",\n                          \"气压\": \"878.6hPa\",\n                          \"气温\": \"8℃\",\n                          \"相对湿度\": \"92.7%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.8毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"2.7米/秒\"},\n                         {\"云量\": \"94.6%\",\n                          \"时间\": \"11:00\",\n                          \"气压\": \"880.4hPa\",\n                          \"气温\": \"8.2℃\",\n                          \"相对湿度\": \"90.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.7毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"2.5米/秒\"},\n                         {\"云量\": \"98.8%\",\n                          \"时间\": \"14:00\",\n                          \"气压\": \"878.3hPa\",\n                          \"气温\": \"8.4℃\",\n                          \"相对湿度\": \"90.1%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"2.6米/秒\"},\n                         {\"云量\": \"97.6%\",\n                          \"时间\": \"17:00\",\n                          \"气压\": \"877.7hPa\",\n                          \"气温\": \"9.8℃\",\n                          \"相对湿度\": \"87.4%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.3毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"3.7米/秒\"},\n                         {\"云量\": \"91.8%\",\n                          \"时间\": \"20:00\",\n                          \"气压\": \"879.2hPa\",\n                          \"气温\": \"9.5℃\",\n                          \"相对湿度\": \"80%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.8毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"2.9米/秒\"},\n                         {\"云量\": \"97.8%\",\n                          \"时间\": \"23:00\",\n                          \"气压\": \"881.6hPa\",\n                          \"气温\": \"9.4℃\",\n                          \"相对湿度\": \"95.2%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"2毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.6米/秒\"},\n                         {\"云量\": \"96.2%\",\n                          \"时间\": \"04日02:00\",\n                          \"气压\": \"881.2hPa\",\n                          \"气温\": \"8.8℃\",\n                          \"相对湿度\": \"96.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"3.4毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.7米/秒\"},\n                         {\"云量\": \"95.2%\",\n                          \"时间\": \"05:00\",\n                          \"气压\": \"880.7hPa\",\n                          \"气温\": \"6.7℃\",\n                          \"相对湿度\": \"96.9%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.2毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.9米/秒\"}],\n          \"第5天每3个小时预报\": [{\"云量\": \"85.7%\",\n                          \"时间\": \"08:00\",\n                          \"气压\": \"882.9hPa\",\n                          \"气温\": \"6.2℃\",\n                          \"相对湿度\": \"97.2%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.7毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"3.3米/秒\"},\n                         {\"云量\": \"99.6%\",\n                          \"时间\": \"11:00\",\n                          \"气压\": \"884.1hPa\",\n                          \"气温\": \"7.9℃\",\n                          \"相对湿度\": \"96.6%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.9米/秒\"},\n                         {\"云量\": \"99.4%\",\n                          \"时间\": \"14:00\",\n                          \"气压\": \"881.7hPa\",\n                          \"气温\": \"10.7℃\",\n                          \"相对湿度\": \"93.8%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"3.1米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"17:00\",\n                          \"气压\": \"880hPa\",\n                          \"气温\": \"10.8℃\",\n                          \"相对湿度\": \"93%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"3.2米/秒\"},\n                         {\"云量\": \"99.3%\",\n                          \"时间\": \"20:00\",\n                          \"气压\": \"880.5hPa\",\n                          \"气温\": \"8.8℃\",\n                          \"相对湿度\": \"84.2%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"无降水\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"3.4米/秒\"},\n                         {\"云量\": \"98.9%\",\n                          \"时间\": \"23:00\",\n                          \"气压\": \"881.3hPa\",\n                          \"气温\": \"6.6℃\",\n                          \"相对湿度\": \"94.6%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.6毫米\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"3米/秒\"},\n                         {\"云量\": \"98%\",\n                          \"时间\": \"05日02:00\",\n                          \"气压\": \"879.6hPa\",\n                          \"气温\": \"6.4℃\",\n                          \"相对湿度\": \"96.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.4毫米\",\n                          \"风向\": \"东南风\",\n                          \"风速\": \"2.8米/秒\"},\n                         {\"云量\": \"99.8%\",\n                          \"时间\": \"05:00\",\n                          \"气压\": \"878hPa\",\n                          \"气温\": \"6.2℃\",\n                          \"相对湿度\": \"98%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.3毫米\",\n                          \"风向\": \"东南风\",\n                          \"风速\": \"2.1米/秒\"}],\n          \"第6天每3个小时预报\": [{\"云量\": \"98.9%\",\n                          \"时间\": \"08:00\",\n                          \"气压\": \"878hPa\",\n                          \"气温\": \"6.7℃\",\n                          \"相对湿度\": \"97.9%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.3毫米\",\n                          \"风向\": \"东南风\",\n                          \"风速\": \"2.2米/秒\"},\n                         {\"云量\": \"95.6%\",\n                          \"时间\": \"11:00\",\n                          \"气压\": \"879hPa\",\n                          \"气温\": \"9.2℃\",\n                          \"相对湿度\": \"97.7%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.2毫米\",\n                          \"风向\": \"南风\",\n                          \"风速\": \"3.1米/秒\"},\n                         {\"云量\": \"99.8%\",\n                          \"时间\": \"14:00\",\n                          \"气压\": \"875.4hPa\",\n                          \"气温\": \"9.2℃\",\n                          \"相对湿度\": \"94.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.7毫米\",\n                          \"风向\": \"东南风\",\n                          \"风速\": \"3.2米/秒\"},\n                         {\"云量\": \"88.9%\",\n                          \"时间\": \"17:00\",\n                          \"气压\": \"872.9hPa\",\n                          \"气温\": \"9.2℃\",\n                          \"相对湿度\": \"86.2%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.2毫米\",\n                          \"风向\": \"南风\",\n                          \"风速\": \"6.4米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"20:00\",\n                          \"气压\": \"873.8hPa\",\n                          \"气温\": \"9.8℃\",\n                          \"相对湿度\": \"80.1%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.5毫米\",\n                          \"风向\": \"东南风\",\n                          \"风速\": \"3.5米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"23:00\",\n                          \"气压\": \"875.1hPa\",\n                          \"气温\": \"8.8℃\",\n                          \"相对湿度\": \"96.2%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.1毫米\",\n                          \"风向\": \"南风\",\n                          \"风速\": \"3.1米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"06日02:00\",\n                          \"气压\": \"873.7hPa\",\n                          \"气温\": \"8.2℃\",\n                          \"相对湿度\": \"97.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.8毫米\",\n                          \"风向\": \"南风\",\n                          \"风速\": \"3.9米/秒\"},\n                         {\"云量\": \"91.5%\",\n                          \"时间\": \"05:00\",\n                          \"气压\": \"872.7hPa\",\n                          \"气温\": \"9.1℃\",\n                          \"相对湿度\": \"97.7%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.1毫米\",\n                          \"风向\": \"南风\",\n                          \"风速\": \"2.3米/秒\"}],\n          \"第7天每3个小时预报\": [{\"云量\": \"100%\",\n                          \"时间\": \"08:00\",\n                          \"气压\": \"873.3hPa\",\n                          \"气温\": \"9.9℃\",\n                          \"相对湿度\": \"98%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"1.9毫米\",\n                          \"风向\": \"南风\",\n                          \"风速\": \"3.9米/秒\"},\n                         {\"云量\": \"95.1%\",\n                          \"时间\": \"11:00\",\n                          \"气压\": \"874.5hPa\",\n                          \"气温\": \"14.8℃\",\n                          \"相对湿度\": \"92.4%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.3毫米\",\n                          \"风向\": \"南风\",\n                          \"风速\": \"4.2米/秒\"},\n                         {\"云量\": \"83.8%\",\n                          \"时间\": \"14:00\",\n                          \"气压\": \"872.3hPa\",\n                          \"气温\": \"15.8℃\",\n                          \"相对湿度\": \"90.7%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.4毫米\",\n                          \"风向\": \"南风\",\n                          \"风速\": \"6.2米/秒\"},\n                         {\"云量\": \"44.8%\",\n                          \"时间\": \"17:00\",\n                          \"气压\": \"871.1hPa\",\n                          \"气温\": \"14.2℃\",\n                          \"相对湿度\": \"87.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.9毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"1.4米/秒\"},\n                         {\"云量\": \"91.1%\",\n                          \"时间\": \"20:00\",\n                          \"气压\": \"873.1hPa\",\n                          \"气温\": \"12.6℃\",\n                          \"相对湿度\": \"83.1%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"2.7毫米\",\n                          \"风向\": \"东风\",\n                          \"风速\": \"2.1米/秒\"},\n                         {\"云量\": \"73.5%\",\n                          \"时间\": \"23:00\",\n                          \"气压\": \"875hPa\",\n                          \"气温\": \"9.8℃\",\n                          \"相对湿度\": \"96%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"2.2毫米\",\n                          \"风向\": \"东北风\",\n                          \"风速\": \"2.7米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"07日02:00\",\n                          \"气压\": \"874.4hPa\",\n                          \"气温\": \"9.2℃\",\n                          \"相对湿度\": \"96.7%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"2.1毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"1.4米/秒\"},\n                         {\"云量\": \"100%\",\n                          \"时间\": \"05:00\",\n                          \"气压\": \"873.8hPa\",\n                          \"气温\": \"12.6℃\",\n                          \"相对湿度\": \"97.5%\",\n                          \"能见度\": \"-\",\n                          \"降水\": \"0.4毫米\",\n                          \"风向\": \"北风\",\n                          \"风速\": \"0.9米/秒\"}]},\n \"舒适度\": 47,\n \"降水\": 0.0,\n \"风向风速风级\": {\"direct\": \"东北风\", \"power\": \"3级\", \"speed\": \"\"}}\n```\n\n***\n[1]: https://blog.jtyoui.com","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyunits%2Fpyunit-weather","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyunits%2Fpyunit-weather","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyunits%2Fpyunit-weather/lists"}