本节内容:
python实现刷新点击与下载量。
代码:
复制代码 代码示例:
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# @author: Wiker Yong
# site: www.jb200.com
#
import urllib2, urllib;
from threading import Thread;
import re, os;
import time
'''''
获取HTTP返回
'''
def download(url):
try :
handler = urllib2.urlopen(url, '', 50000);
if handler.getcode()==200 : #状态返回成功,注意不用进行读取数据
print ("200,close")
handler.close();
except:
print("Except")
if __name__ == "__main__":
while True:
url = 'http://www.jb200.com';
print(url);
download(url);
time.sleep(3); #休眠时间秒
说明:以上代码基于pythond 2.7。