一、安装sqlalchemy、pymysql模块
pip install sqlalchemy -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple
注意,pymysql需要写进代码中,下面会有体现
二、创建数据库
create database fastapi charset=utf8;
三、通过代码连接数据库并且测试
# 导入FastAPI模块
from fastapi impor...