1 Star 1 Fork 0

Emergingtechnologies/ucwinRoadCaffeMobileNet-SSDdetections

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
readconfig_ini_file.py 571 Bytes
一键复制 编辑 原始数据 按行查看 历史
Inayatullah Khan 提交于 2018-12-01 02:03 . second tmp commit
#!/usr/bin/env python3
import sys
import configparser
import argparse
if __name__ == '__main__':
parser = argparse.ArgumentParser(description="A program that Bash can call to parse an .ini file")
parser.add_argument("inifile", help="name of the .ini file")
parser.add_argument("section", help="name of the section in the .ini file")
parser.add_argument("itemname", help="name of the desired value")
args = parser.parse_args()
config = configparser.ConfigParser()
config.read(args.inifile)
print(config.get(args.section, args.itemname))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/EmergingTechnologies/ucwinRoadCaffeMobileNet-SSDdetections.git
[email protected]:EmergingTechnologies/ucwinRoadCaffeMobileNet-SSDdetections.git
EmergingTechnologies
ucwinRoadCaffeMobileNet-SSDdetections
ucwinRoadCaffeMobileNet-SSDdetections
master

搜索帮助