python显示天气预报


Posted in Python onMarch 02, 2014
import urllib2
import json
import string
url ='http://m.weather.com.cn/data/101090502.html'
re = urllib2.urlopen(url).read()
we = json.loads(re)['weatherinfo']
print we['city'] , we['date_y'].center(30) ,   we['week']
print we['temp1'], we['weather1'].center(30),  we['wind1']
print we['temp2'], we['weather2'].center(30),  we['wind2']
print we['temp3'], we['weather3'].center(30),  we['wind3']
print we['temp4'], we['weather4'].center(30),  we['wind4']
print we['temp5'], we['weather5'].center(30),  we['wind5']
print we['temp6'], we['weather6'].center(30),  we['wind6']
print we['index48_d']
raw_input('plese input Enter to esc')
Python 相关文章推荐
python根据文件大小打log日志
Oct 09 Python
Python处理PDF及生成多层PDF实例代码
Apr 24 Python
python3实现抓取网页资源的 N 种方法
May 02 Python
Python实现简单文本字符串处理的方法
Jan 22 Python
Python一个简单的通信程序(客户端 服务器)
Mar 06 Python
python内存监控工具memory_profiler和guppy的用法详解
Jul 29 Python
Python+Tensorflow+CNN实现车牌识别的示例代码
Oct 11 Python
python爬虫模拟浏览器的两种方法实例分析
Dec 09 Python
基于pandas中expand的作用详解
Dec 17 Python
Python 音频生成器的实现示例
Dec 24 Python
MNIST数据集转化为二维图片的实现示例
Jan 10 Python
python对输出的奇数偶数排序实例代码
Dec 04 Python
pyqt4教程之实现半透明的天气预报界面示例
Mar 02 #Python
windows下python模拟鼠标点击和键盘输示例
Feb 28 #Python
python抓取网页中的图片示例
Feb 28 #Python
使用python分析git log日志示例
Feb 27 #Python
python去掉字符串中重复字符的方法
Feb 27 #Python
tornado捕获和处理404错误的方法
Feb 26 #Python
python为tornado添加recaptcha验证码功能
Feb 26 #Python
You might like
随机头像PHP版
2006/10/09 PHP
php+js实现百度地图多点标注的方法
2016/11/30 PHP
jQuery Ajax方法调用 Asp.Net WebService 的详细实例代码
2011/04/27 Javascript
js比较和逻辑运算符的介绍
2013/03/10 Javascript
jQuery获得内容和属性方法及示例
2013/12/02 Javascript
利用JS来控制键盘的上下左右键(示例代码)
2013/12/14 Javascript
jquery动态添加元素事件失效问题解决方法
2014/05/23 Javascript
原生 JS Ajax,GET和POST 请求实例代码
2016/06/08 Javascript
jQuery+css实现非常漂亮的水平导航菜单效果
2016/07/27 Javascript
vue.js入门教程之基础语法小结
2016/09/01 Javascript
Agularjs妙用双向数据绑定实现手风琴效果
2017/05/26 Javascript
深入理解Webpack 中路径的配置
2017/06/17 Javascript
vue中的event bus非父子组件通信解析
2017/10/27 Javascript
vue-router路由与页面间导航实例解析
2017/11/07 Javascript
vuejs 动态添加input框的实例讲解
2018/08/24 Javascript
vue 音乐App QQ音乐搜索列表最新接口跨域设置方法
2018/09/25 Javascript
Vue表单输入绑定的示例代码
2018/11/01 Javascript
python函数缺省值与引用学习笔记分享
2013/02/10 Python
python进阶教程之词典、字典、dict
2014/08/29 Python
python 爬取微信文章
2016/01/30 Python
举例讲解Python中字典的合并值相加与异或对比
2016/06/04 Python
Python实现霍夫圆和椭圆变换代码详解
2018/01/12 Python
python字典值排序并取出前n个key值的方法
2018/10/17 Python
对python 调用类属性的方法详解
2019/07/02 Python
python实现飞机大战小游戏
2019/11/08 Python
wxPython+Matplotlib绘制折线图表
2019/11/19 Python
Python中 Global和Nonlocal的用法详解
2020/01/20 Python
python实现银行账户系统
2021/02/22 Python
详解使用HTML5的classList属性操作CSS类
2017/10/13 HTML / CSS
Joules美国官网:出色的英国风格
2017/10/30 全球购物
全球才华横溢工匠的家居装饰、珠宝和礼物:NOVICA
2021/01/22 全球购物
出国签证在职证明
2014/01/16 职场文书
论群众路线学习笔记
2014/11/06 职场文书
详解Python常用的魔法方法
2021/06/03 Python
React实现动效弹窗组件
2021/06/21 Javascript
tomcat默认最大连接数及相关调整方法
2022/05/06 Servers