• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    python中使用asyncio实现异步IO实例分析

    1、说明

    Python实现异步IO非常简单,asyncio是Python 3.4版本引入的标准库,直接内置了对异步IO的支持。

    asyncio的编程模型就是一个消息循环。我们从asyncio模块中直接获取一个EventLoop的引用,然后把需要执行的协程扔到EventLoop中执行,就实现了异步IO。

    2、实例

    import asyncio
    @asyncio.coroutine
    def wget(host):
      print('wget %s...' % host)
      connect = asyncio.open_connection(host, 80)
      reader, writer = yield from connect
      header = 'GET / HTTP/1.0\r\nHost: %s\r\n\r\n' % host
      writer.write(header.encode('utf-8'))
      yield from writer.drain()
      while True:
        line = yield from reader.readline()
        if line == b'\r\n':
          break
        print('%s header > %s' % (host, line.decode('utf-8').rstrip()))
      # Ignore the body, close the socket
      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()

    知识点扩展:

    数据流(Streams)

    数据流(Streams)是用于处理网络连接的高阶异步/等待就绪(async/await-ready)原语,可以在不使用回调和底层传输协议的情况下发送和接收数据。

    以下是一个用asyncio实现的TCP回显客户端:

    import asyncio
    
    async def tcp_echo_client(message):
      reader, writer = await asyncio.open_connection(
        '127.0.0.1', 8888)
    
      print(f'Send: {message!r}')
      writer.write(message.encode())
    
      data = await reader.read(100)
      print(f'Received: {data.decode()!r}')
    
      print('Close the connection')
      writer.close()
      await writer.wait_closed()
    
    asyncio.run(tcp_echo_client('Hello World!'))

    到此这篇关于python中使用asyncio实现异步IO实例分析的文章就介绍到这了,更多相关python中使用asyncio实现异步IO内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • Python 异步协程函数原理及实例详解
    • Python异步编程之协程任务的调度操作实例分析
    • python中asyncio异步编程学习
    • Python协程asyncio异步编程笔记分享
    上一篇:浅析Python模块之间的相互引用问题
    下一篇:Python爬取网站图片并保存的实现示例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    python中使用asyncio实现异步IO实例分析 python,中,使用,asyncio,实现,