摘要:
Response封装 utils/response.py from rest_framework.response import Response class APIResponse(Response): def __init__(self, status=100, msg='success', h 阅读全文
摘要:
# 每个python项目,都应该有个requirement.txt >项目依赖的模块 安装需要的工具包 # pip3 install freeze requirement.txt的生成 pycharm的terminal终端使用: # pip3 freeze >requirement.txt #生成 阅读全文