An open API service indexing awesome lists of open source software.

https://github.com/yangfei4913438/fisher

python研究项目
https://github.com/yangfei4913438/fisher

Last synced: about 2 months ago
JSON representation

python研究项目

Awesome Lists containing this project

README

        

## 项目说明

一个 flask 练习项目。参考七月老师的flask课程,但具体的实现上有很多区别。

> 阅读源码的时候,不要着急看很细节的实现(如每个函数怎么具体实现的),先看思路(函数的名称或者注释会告诉你,这个函数是用来干嘛的)。

#### 环境依赖

- python 3.10 (推荐使用 pyenv 来管理不同的 python 版本)
- pipenv(官方推荐的虚拟环境管理工具)
- mysql 8

#### 安装项目依赖

> 进入虚拟环境
> 进入(创建)虚拟环境,没有就会自动创建新的虚拟环境(基于系统的python版本创建)。
> > pipenv shell
>
> 安装依赖
> > pipenv install
>
> 查看依赖关系
> > pipenv graph

#### 启动项目