# python-flask-abc **Repository Path**: deepoo/python-flask-abc ## Basic Information - **Project Name**: python-flask-abc - **Description**: Flask框架模板 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-25 - **Last Updated**: 2025-08-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 基于 flask 的脚手架 ## 安装依赖 ```bash pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple ``` ## 表 ```sql CREATE TABLE `member` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT '', `email` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '', `created_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; ```