用asyncio的异步网络连接来获取sinasohu和163的网站首页

Posted byerHu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用asyncio的异步网络连接来获取sinasohu和163的网站首页相关的知识,希望对你有一定的参考价值。

代码如下:

import asyncio

async def wget(host):
    print(wget %s... % host)
    connect = asyncio.open_connection(host, 80)
    reader, writer = await connect
    header = GET / HTTP/1.0\r\nHost: %s\r\n % host
    writer.write(header.encode(utf-8))
    await writer.drain()
    while True:
        line = await reader.readline()
        if line == b\r\n:
            break
        print(%s header > %s % (host, line.decode(utf-8).rstrip()))

        writer.close()
loop = asyncio.get_event_loop()
tasks = [wget(host) for host in [www.sina.com.cn, www.sohu.com, www.163.com]]
loop.run_until_complete(asyncio.wait(tasks))
loop.close()

上面的写法只适用与python 3.5及其之后的版本,再python 3.5之前,用

请注意,asyncawait是针对coroutine的新语法,要使用新的语法,只需要做两步简单的替换:

  1. @asyncio.coroutine替换为async
  2. yield from替换为await

以上是关于用asyncio的异步网络连接来获取sinasohu和163的网站首页的主要内容,如果未能解决你的问题,请参考以下文章

python asyncio 异步获取子域名小demo

python asyncio 异步获取子域名小demo

python 多进程和多线程3 —— asyncio - 异步IO

python 多进程和多线程3 —— asyncio - 异步IO

Python 异步: 检查网站状态示例(21)

异步等待函数中的 Python asyncio.semaphore