Python之Flask Web框架使用flask-sqlacodegen快速将MySQL数据表结构导入到Models

葛威
2023-12-01

Python之Flask Web框架使用flask-sqlacodegen快速将MySQL数据表结构导入到Models

一、依赖的库

使用pip安装以下库

1. pip install cymysql  或者  pip install pymysql
2. pip install flask-sqlacodegen

二、使用方法

flask-sqlacodegen mysql+cymysql://mysqlusername:mysqlpassword@192.168.0.1/dbname --table test --outfile test.py --flask

① --table:指定表名

② --outfile:指定生成的models文件

 类似资料: