Python jinja2

jinja2是啥 python的模板引擎,也是Flask的模板引擎,能根据模板字符串替换,有自己的语法规则。 官网: http://docs.jinkan.org/docs/jinja2/ 使用 安装 $ pip install jinja2 语法定义 j [Read More]

Python docker-client

简单记录哈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]

OpenStack olso_config

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