Metadata-Version: 2.1
Name: weatherChina
Version: 0.0.0.4
Summary: The most simple way to get China city weather through python.
Home-page: http://github.com/Peiiii/weatherChina
Author: Wang Pei
Author-email: 1535376447@qq.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
Requires-Dist: requests

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

Install
---
```shell script
pip3 install weatherChina
```

Usage
---
**demo:**
```python
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': ['多云', '小雨', '小雨转晴', '晴', '多云转晴', '晴', '晴']}

```


