使用 sqlacodegen 导出 mysql 表格为 sqlalchemy 的模型
1. 安装 sqlacodegen
pip install sqlacodegen
2. 导出全部数据库表
sqlacodegen --outfile=models.py mysql://root:password@127.0.0.1:3306/test
用户名:root
密码:password
ip: 192.168.1.250
port: 3306
数据库名: test
3. 导出某些表格
sqlacodegen --outfile=models.py mysql://root:guess@127.0.0.1:3306/test --tables teacher,student