2021年10月25日

UWSGI+NGINX部署

摘要: 环境准备 发布CRM你将使用以下软件 nginx uWSGI CentOS7 CRM项目文件 virtualenv/virtualenvwrapper supervisor WSGI、uWSGI python web服务器开发使用WSGI协议(Web Server Gateway Interface 阅读全文

posted @ 2021-10-25 16:54 朴先生 阅读(515) 评论(0) 推荐(1)

2021年10月20日

python利用函数装饰器实现对函数调用次数的跟踪

摘要: case1:>>> class tracer: def __init__(self, func): self.calls = 0 self.func = func def __call__(self, *args, **keys): self.calls += 1 print('call %s to 阅读全文

posted @ 2021-10-20 17:39 朴先生 阅读(242) 评论(0) 推荐(0)

2021年7月15日

常用模块

摘要: 阅读目录 一 time与datetime模块 二 random模块 三 os模块 四 sys模块 五 shutil模块 六 json&pickle模块 七 shelve模块 八 xml模块 九 configparser模块 十 hashlib模块 十一 suprocess模块 十二 logging模 阅读全文

posted @ 2021-07-15 09:26 朴先生 阅读(13) 评论(0) 推荐(0)

导航