Metadata-Version: 1.0
Name: WeatherCN
Version: 0.1.2
Summary: 获取国内城市天气
Home-page: https://github.com/xanahopper/weatherCN/
Author: Xana Hopper
Author-email: xanahopper@163.com
License: LGPL
Description: weatherCN
        ==========
        * 获取国内城市天气情况
        * 名称同时支持中英文（中文请使用unicode字符串）
        * 暂时只支持Python 2
        
        安装方法
        ==========
        
            pip install weatherCN
        
        使用方法
        ==========
        ## 简单使用
        
            from weatherCN import weatherCN
            print weatherCN.currentWeather(u'上海')
            print weatherCN.currentWeather('qingdao')
        
        ## 进阶使用
        
            from weatherCN import weatherCN
            cityId = weatherCN.getCity('shanghai')
            weatherData = weatherCN.getWeather(cityId)
        
        其他具体使用，请参看help。
        
        
Platform: UNKNOWN
