python
文章平均质量分 93
liurizhou
这个作者很懒,什么都没留下…
展开
-
使用bandersnatch搭建pypi 本地镜像源(20211026)
需求背景:公司内网不能联网,同时开发工作需要各种python的模块,因此需要搭建一个pypi的本地镜像源。参考网上的方法,总结了大致有下面几种方式搭建pypi本地源:devpi: 企业内网利用devpi搭建pypi私服 - 简书 pip2pi: https://yangfannie.com/1439.html pypiserver: https://zhongneng.github.io/2019/02/16/creat-pip/ bandersnatch:基于bandersnatch搭...原创 2021-10-26 21:29:56 · 4758 阅读 · 1 评论 -
TypeError: unhashable type: 'collections.OrderedDict'
for repo in json_str.items(): json_str[repo]['name']="123"其中json_str为一个OrderedDict类型的多层字典,执行中报TypeError: unhashable type: 'collections.OrderedDict'错误解决方法:for repo ,config in json_str.items(): js...原创 2019-01-27 21:05:17 · 1697 阅读 · 0 评论 -
【转】python作用域
原文出处:http://www.cnblogs.com/lianzhilei/p/5852959.html1、块级作用域想想此时运行下面的程序会有输出吗?执行会成功吗? 1 2 3 4 5 6 7 8 9 10 11 12 #块级作用域 if 1 ==...转载 2019-01-28 10:39:19 · 169 阅读 · 0 评论 -
python实现gerrit中四种下载patchset的方法(checkout,Cherry-pick,format-patch,pull)
将patch打入本地repo,通常可以通过下面四种方法进行操作Checkout git fetch https:xxxxxxx refs/changes/30/126030/2 && git checkout FETCH_HEAD Cherry Pick git fetch https:xxxxxxx refs/changes/30/12603...原创 2019-05-13 14:28:09 · 6570 阅读 · 0 评论