# flask-restful-example **Repository Path**: wanliofficial/flask-restful-example ## Basic Information - **Project Name**: flask-restful-example - **Description**: python3 flask restful快速搭建脚手架 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2022-12-25 - **Last Updated**: 2025-03-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Flask-RESTful Example #### 安装依赖包 ``` python install -r requirements.txt ``` #### 创建数据表 ``` python manager.py db init python manager.py db migrate python manager.py db upgrade ``` #### debug模式启动 ``` python manager.py debug ``` #### 生产模式启动 ``` python manager.py run ``` #### Tests ``` python -m tests.testapp ```