摘要:
python代码压缩 使用 python-minifier 库压缩 python 文件大小,同时混淆代码。安装库:pip install python-minifier,对于单个文件或整个项目都可以直接使用命令压缩。 使用 python-minifier 压缩 pydantic 的模型时会有问题,暂 阅读全文
摘要:
django中间件处理返回数据 统一接口返回数据格式的时候,每个视图都需要返回JsonResponse对象,比较麻烦,因此增加中间件处理视图返回的结果。 from django.http.response import JsonResponse, HttpResponseBase code_msg_ 阅读全文