首页 > 编程语言 > 详细

python 访问 网页 获得源码

时间:2016-08-10 22:26:43      阅读:255      评论:0      收藏:0      [点我收藏+]
>>> from urllib.request import urlopen
>>> for line in urlopen(‘http://tycho.usno.navy.mil/cgi-bin/timer.pl‘):
...     line = line.decode(‘utf-8‘)  # Decoding the binary data to text.
...     if ‘EST‘ in line or ‘EDT‘ in line:  # look for Eastern Time
...         print(line)

python 访问 网页 获得源码

原文:http://www.cnblogs.com/delphi-xe5/p/5759035.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!