<每隔固定时间抓取百度 python代码>
每隔固定时间抓取百度 python代码代码片段
*1. *[代码][Python]代码
在学习过程中有什么不懂得可以加我的
python学习交流扣扣qun,784758214
群里有不错的学习视频教程、开发工具与电子书籍。
与你分享python企业当下人才需求及怎么从零基础学习好python,和学习什么内容
#coding: utf-8
# www.iplaypy.com python
import sys
import urllib
import urllib2
from BeautifulSoup import BeautifulSoup
from time import sleep
while(True):
try:
res = urllib2.urlopen("http://www.baidu.com/")
#baidu is encoded by gbk
print res.read()
sleep(3600) #per hour
except(KeyboardInterrupt):
print("\nbyebyebye.~")
break
"""
网友评论