Peiiii / weatherChina

一行代码获取近7日天气,python3一键安装,简单易用,你值得一试

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

weatherChina

The most simple way to get China city weather through python. 一行代码查询近7日天气,pip一键安装,数据来源于**天气网,只支持python3

Install

pip3 install weatherChina

Usage

demo:

import weatherChina
# 快速使用
# 主城区
weather=weatherChina.getWeatherByNames('上海','上海')
weather=weatherChina.getWeatherByNames('安徽','合肥','合肥')

# 其它
weather=weatherChina.getWeatherByNames('上海','浦东')
weather=weatherChina.getWeatherByNames('西藏','日喀则','萨迦')
#
print(weather)


# 查看所有地区、以及每个区域的id信息
regionData=weatherChina.getRegionData()
print(regionData)

# 查询地区的id
regionId=weatherChina.getRegionId('北京','朝阳')
regionId=weatherChina.getRegionId('安徽','合肥','合肥')
print(regionId)

# 根据id查询近7日天气
weather=weatherChina.getWeatherById(regionId)
print(weather)
# {'lowTemp': ['3', '5', '0', '1', '3', '4', '2'], 'highTemp': ['14', '15', '10', '9', '14', '17', '18'], 'detail': ['多云', '小雨', '小雨转晴', '晴', '多云转晴', '晴', '晴']}

About

一行代码获取近7日天气,python3一键安装,简单易用,你值得一试

License:MIT License


Languages

Language:Python 90.7%Language:Shell 5.5%Language:Batchfile 3.9%