摘要:
Fiddler问题 - creation of the root certificate was not successful 解决办法: http://localhost:8888/ 安装证书,如果提示没有证书(8888是你在Tool->Fiddler Option->Connections设置的 阅读全文
摘要:
参考: http://www.runoob.com/docker/docker-install-mysql.html https://www.licoy.cn/2977.html http://www.ruanyifeng.com/blog/2018/02/docker-tutorial.html 阅读全文
摘要:
http://www.runoob.com/docker/docker-architecture.html 阅读全文
摘要:
https://docs.docker.com/docker-for-mac/#preferences-menu docker 的镜像命令需要抽时间了解 阅读全文
摘要:
https://www.cnblogs.com/yu-hailong/p/7629130.html https://blog.csdn.net/problc/article/details/47837353 http://www.ruanyifeng.com/blog/2018/02/docker- 阅读全文
摘要:
https://docs.docker.com/docker-for-mac/#explore-the-application Open a command-line terminal and test that your installation works by running the simp 阅读全文
摘要:
Docker的应用场景 Web 应用的自动化打包和发布。 自动化测试和持续集成、发布。 在服务型环境中部署和调整数据库或其他的后台应用。 从头编译或者扩展现有的OpenShift或Cloud Foundry平台来搭建自己的PaaS环境。 Web 应用的自动化打包和发布。 自动化测试和持续集成、发布。 阅读全文
摘要:
python 列表转为字典的两个小方法 1、现在有两个列表,list1 = ['key1','key2','key3']和list2 = ['1','2','3'],把他们转为这样的字典:{'key1':'1','key2':'2','key3':'3'} >>>list1 = ['key1','k 阅读全文
摘要:
python+requests实现接口测试 - get与post请求基本使用方法 http://www.cnblogs.com/nizhihong/p/6567928.html Requests 库是用Python语言编写,基于 urllib,采用 Apache2 Licensed 开源协议的 HT 阅读全文
摘要:
requests中cookie的原理 http://blog.csdn.net/zhu_free/article/details/50563756 requests - cookies的实现例子 http://www.cnblogs.com/nizhihong/p/6699492.html 在请求中 阅读全文
摘要:
一般会报SSL问题:解决办法参考 http://blog.csdn.net/a506681571/article/details/78284589 # 设置未经允许验证的SSL方法,只需运行一次便可 ssl._create_default_https_context = ssl._create_un 阅读全文
摘要:
转自http://blog.csdn.net/huilan_same/article/details/52944782 unittest是xUnit系列框架中的一员,如果你了解xUnit的其他成员,那你用unittest来应该是很轻松的,它们的工作方式都差不多。 unittest核心工作原理 uni 阅读全文
摘要:
注意:在Python 3中,range()的实现方式与xrange()函数相同,所以就不存在专用的xrange()(在Python 3中使用xrange()会触发NameError) https://blog.csdn.net/u010412719/article/details/47088095 阅读全文
摘要:
环境:Macbook MacOS自带的python2.7,在命令行中输入python后会显示2.7版本 如何切换成新版本? 一、修改用户配置环境变量~/.bash_profile 确定新版本的安装位置,brew info python,/usr/local/Cellar/python/3.6.4_4 阅读全文