摘要:
###aiohttp是什么? 类似于python的requests库,区别就是可以基于异步发送请求 安装 : pip install aiohttp ###1.基本语法 import asyncio import aiohttp async def request(url): async with 阅读全文
posted @ 2022-04-29 19:04
志强爱璇璇
阅读(74)
评论(0)
推荐(0)
摘要:
##python的asyncio协程模块的基本使用 ###1.代码示例 import asyncio #创建一个协程函数,协程函数必须以async关键字修饰 async def request(url): print('正在向{}发送请求'.format(url)) #IO阻塞(网络请求等都是IO阻 阅读全文
posted @ 2022-04-29 18:33
志强爱璇璇
阅读(243)
评论(0)
推荐(0)