这篇主要是接着上篇的,实验gevent嵌套使用,看情况如何。还是先上代码。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date : 2020-03-02 19:53:11
# @Author : Flyinghappy ([email protected])
# @Link : https://www.cnblogs.com/flyinghappy/
# @Version : $Id$
#note:gevent嵌套使用实验
from gevent import monkey
monkey.patch_all()
import gevent
import time
import asyncio
import requests
import urllib.request
def runinfo(func):
def inner(*args):
print('开始访问---'+str(args[0]))
start_time=time.time()
result=func(*args)
stop_time=time.time()
print(func.__name__+'------running time is: %s'% (stop_time-start_time))
print('结束访问---'+str(args[0]))
return result
return inner
@runinfo
def taskfun(url):
html=urllib.request.urlopen(url).read()
return html
@runinfo
def taskfun_outer(num_list):
url=[
'http://www.sina.com.cn',
'http://www.cnr.cn',
'http://www.hao123.com'
] g_list=[]
for i in range(len(url)):
g=gevent.spawn(taskfun,url[i])
g_list.append(g)
gevent.joinall(g_list) def main():
start_time=time.time()
num_list=['一']
g1=gevent.spawn(taskfun_outer,num_list)
num_list=['二']
g2=gevent.spawn(taskfun_outer,num_list)
gevent.joinall([g1,g2])
stop_time=time.time()
print('main---running time is: %s'% (stop_time-start_time))
if __name__ == '__main__':
main()
再来看看运行结果哈:我截图了两张,大家可以仔细对比一下。说明是异步执行的。
另外一张截图
PS:呵呵呵,说明实验成功了!可以嵌套使用。