在Python中,有多种方法可以实现异步编程,其中最常见的包括使用asyncio库和使用第三方库如aiohttp。
import asyncio
async def main():
print("Hello")
await asyncio.sleep(1)
print("World")
asyncio.run(main())
在上面的示例中,main()函数是一个异步函数,通过await asyncio.sleep(1)实现了异步等待1秒后再执行后续代码的功能。
import aiohttp
import asyncio
async def fetch(url):
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
return await response.text()
async def main():
html = await fetch("https://www.example.com")
print(html)
asyncio.run(main())
在上面的示例中,fetch()函数通过aiohttp库实现了异步的HTTP请求,而main()函数则使用await关键字实现了异步等待获取网页内容后再打印。