
Python
念念念、
这个作者很懒,什么都没留下…
展开
-
常用命令记录
常用linux、git、docker命令原创 2022-06-13 16:04:19 · 123 阅读 · 1 评论 -
Python_web:返回浏览器响应的同时,异步处理其他任务
最近遇到一个情景:希望当客户端向浏览器发起一个耗时请求任务时,先返回响应,同时后台进出耗时任务处理原创 2022-06-13 15:45:23 · 461 阅读 · 0 评论 -
Python BUG集:IndentationError: unindent does not match any outer indentation level
在执行Python脚本时,出现如下错误:IndentationError: unindent does not match any outer indentation level原因:这个bug是由于TAB键和空格混搭使用造成的解决:统一只用TAB键或者空格,最好是只用空格Python是一门用空格缩进来区分代码层次的语言,其实Python并没有强制要求你用Tab缩进或者用空格缩进,甚至空格...原创 2019-02-15 15:39:55 · 194 阅读 · 0 评论 -
Django + Nginx + uWSGI部署
Django + Nginx + uWSGI部署1. Nginx/uWSGI/Django项目工作流程项目基于 Django + Nginx + uWSGI 进行部署项目代码路径: pro/prodec1.1 用户通过浏览器访问发出http请求到服务器;1.2 Nginx负责接受外部Http请求并进行解包:若请求是静态文件则根据设置好的静态文件路径返回对应内容;若请求是动态内容则将...原创 2019-01-30 15:55:38 · 295 阅读 · 0 评论 -
Python:对列表中的字典进行去重
data_list = [{"a": "123", "b": "321"}, {"a": "123", "b": "321"}, {"b": "321", "a": "123"}] run_function = lambda x, y: x if y in x else x + [y] return reduce(run_function, [[], ] + data_li...原创 2019-04-28 17:24:18 · 4933 阅读 · 0 评论 -
Python Bug:pip安装报错 Cannot uninstall 'django'. It is a distutils installed project and thus we cannot
Cannot uninstall 'django'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.安装依赖包出现错误:可以在pip命令后加上–ig...原创 2019-04-29 13:53:05 · 972 阅读 · 0 评论