上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 79 下一页

python2 python3区别

摘要: 安装多个版本的python https://www.cnblogs.com/yinzhengjie/p/9106558.html https://www.cnblogs.com/pxuan/p/6408823.html 自己的步骤: 1)安装python2.7和python3.7 2)添加环境变量: 阅读全文
posted @ 2019-05-31 15:22 我和你并没有不同 阅读(539) 评论(0) 推荐(0) 编辑

捕获异常

摘要: except (rq.ConnectionError, rq.Timeout,socket.timeout)as e: 阅读全文
posted @ 2019-05-31 15:09 我和你并没有不同 阅读(112) 评论(0) 推荐(0) 编辑

开源的微信个人号接口

摘要: https://www.cnblogs.com/dongxiaodong/p/10490563.html https://itchat.readthedocs.io/zh/latest/ 阅读全文
posted @ 2019-05-31 14:51 我和你并没有不同 阅读(1396) 评论(2) 推荐(0) 编辑

工具

摘要: 画流程图工具:https://www.processon.com/ 文档猫: https://wendang.xuehi.cn/ 测试http的一个网站:http://httpbin.org/get?foo1=bar1&foo2=bar2软件名称 软件用途IntelliJ IDEA 开发工具team 阅读全文
posted @ 2019-05-31 11:52 我和你并没有不同 阅读(124) 评论(0) 推荐(0) 编辑

把日志同时写到文件和打印到屏幕

摘要: ''' Python 使用logging模块记录日志涉及四个主要类,使用官方文档中的概括最为合适: logger提供了应用程序可以直接使用的接口; Logger.setLevel(lel):指定最低的日志级别,低于lel的级别将被忽略。debug是最低的内置级别,critical为最高 Logger.addFilter(filt)、Logger.r... 阅读全文
posted @ 2019-05-16 19:23 我和你并没有不同 阅读(922) 评论(0) 推荐(0) 编辑

抓包 Charles

摘要: Charles 可以用wireshark来对http2的流量进行抓包分析 阅读全文
posted @ 2019-04-27 17:04 我和你并没有不同 阅读(107) 评论(0) 推荐(0) 编辑

shell 脚本示例

摘要: #!/bin/sh #while true #do cd /mnt/vfw/third_meteor for sub in `ls` do cd /mnt/vfw/third_meteor/${sub}/GRIDFILE for file in `ls |grep back` do cd /mnt/vfw/third... 阅读全文
posted @ 2019-04-20 20:05 我和你并没有不同 阅读(440) 评论(0) 推荐(0) 编辑

celery

摘要: celery的最佳实践:https://www.cnblogs.com/ajianbeyourself/p/3889017.html#_label1 原版:https://denibertovic.com/posts/celery-best-practices/ 最佳实践里提到的7个问题: 1,不要 阅读全文
posted @ 2019-04-11 14:30 我和你并没有不同 阅读(163) 评论(1) 推荐(0) 编辑

WSGI 相关的东东(转载)

摘要: Gunicorn-配置详解 https://blog.csdn.net/y472360651/article/details/78538188 WSGIWSGI的全称是Web Server Gateway Interface(Web服务器网关接口),它不是服务器、python模块、框架、API或者任 阅读全文
posted @ 2019-04-10 19:26 我和你并没有不同 阅读(177) 评论(0) 推荐(0) 编辑

mongodb 性能

摘要: mongo 性能:http://www.mongoing.com/docs/tutorial/optimize-query-performance-with-indexes-and-projections.html 1)$inc 是有原子性保证的 2)save根据所保存的对象是否包含非空(null) 阅读全文
posted @ 2019-04-08 16:00 我和你并没有不同 阅读(212) 评论(0) 推荐(0) 编辑
上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 79 下一页