# flask项目集合 **Repository Path**: leierqiang/flaskProject_all ## Basic Information - **Project Name**: flask项目集合 - **Description**: flask项目,包括一个flask做mock的一个项目,重要 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-06-09 - **Last Updated**: 2022-08-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flask项目集合 ## 1、mock-servr - 重要,使用flask实现接口mock数据 资料:https://github.com/hanhouchao/mock-server ## 2、APIFlask - demo而已 资料:https://github.com/apiflask/apiflask ## 3、watchlist - 模范READEME 正常 README完整 资料:https://helloflask.com/ https://github.com/helloflask/watchlist ## 报错后处理记录 1、ImportError: cannot import name 'Mapping' from 'collections' (c:\users\administrator\appdata\local\programs\python\python310\lib\collections\__init__.py) 修改如下: ``` 修改文件 env\Lib\site-packages\jinja2\test.py # from collections import Mapping from collections.abc import Mapping ``` 2、No module named C:\Users\Administrator\AppData\Local\Programs\Python\Python310\Scripts\flask ``` 字面意思,没有找到flask这个文件,原因是windows上是flask.exe,复制一份出来改为flask即可 ```