Python jinja2 Posted on Fri Sep 14, 2018 | 747 words | Zhiwei Yin jinja2是啥 python的模板引擎,也是Flask的模板引擎,能根据模板字符串替换,有自己的语法规则。 官网: http://docs.jinkan.org/docs/jinja2/ 使用 安装 $ pip install jinja2 语法定义 j [Read More] python code jinja2
Python docker-client Posted on Tue Sep 11, 2018 | 556 words | Zhiwei Yin 简单记录哈python的docker client的使用。 > 官方文档: > https://docker-py.readthedocs.io/en/stable/client.html > https://docs.docker.com/develop/sdk/examples/ > demo地址: > https://github.com/zhiweiyin318/yzw.python.demo/tree/master/dockerclient 安装 $ pip install docker 使用 client 初始化 需要先创建一个Doc [Read More] python code docker
OpenStack olso_config Posted on Mon Sep 10, 2018 | 402 words | Zhiwei Yin oslo oslo作为OpenStack的通用组件,在每一个项目中都有用到,oslo.config主要用于命令行和配置项解析。 参考: * https://gtcsq.readthedocs.io/en/latest/openstack/oslo_cfg.html * https://blog.csdn.net/zhangyifei216/article/details/50434980 * https://blog.csdn.net/hobertony_7/article/details/79206297 * https://www.programcreek.com/python/example/106149/oslo_config.cfg.ConfigOpts [Read More] python code
golang rand生成随机数 Posted on Mon Sep 3, 2018 | 741 words | Zhiwei Yin 简介 math/rand package实现了伪随机数字生成器。 随机数字是通过Source生成的,rand.Seed会初始化默认全局的Source,如果不调用rand.Seed就会使用默认的Source。所生成的随机数字是固定顺序生成的,每次运行程序如果seed相同的话,生成随机数是相同的。 默认的Source是线程安全的,自己通过New生成的不是。 [Read More] golang code
golang的测试框架 Posted on Thu Aug 9, 2018 | 1117 words | Zhiwei Yin golang 测试框架 本文主要介绍golang 测试的集中常见的框架。 go test 文件名称位xx_test.go 测试函数Testxxx(t *testing.T) go test -v GoConvey 可以管理和运行 [Read More] golang code