上传者: 38670391
|
上传时间: 2021-12-07 22:52:00
|
文件大小: 42KB
|
文件类型: -
本文实例讲述了Python异步操作MySQL。分享给大家供大家参考,具体如下:
安装aiomysql
依赖
Python3.4+
asyncio
PyMySQL
安装
pip install aiomysql
应用
基本的异步连接connection
import asyncio
from aiomysql import create_pool
loop = asyncio.get_event_loop()
async def go():
async with create_pool(host='127.0.0.1', port=3306,
u