Python中使用gflags

Posted 悦悦的小屋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中使用gflags相关的知识,希望对你有一定的参考价值。

安装命令pip install python-gflags

使用示例:

import gflags

FLAGS = gflags.FLAGS

gflags.DEFINE_string(name, ming, this is a value)
gflags.DEFINE_integer(qps, 0, test qps)
gflags.DEFINE_boolean(debug, False, whether debug)
gflags.DEFINE_float(price, 0.9, the price of apple)

print FLAGS.name
print FLAGS.qps
print FLAGS.debug
print FLAGS.price

gflags使用说明:

1.gflags.DEFINE_type可以定义输入参数,这里列举了常用的boolean、integer、string、float,参数的含义分别为定义名称、默认值和该参数的说明,例如例子中的name可以使用--name去赋值;

2.直接在运行的时候使用--help可以看到所有的输入参数的默认值和说明;

3.gflags.FLAGS(argv)对参数进行初始化处理;

4.调用的时候直接使用gflags.FLAGS.name去调用;

5.代码中的FLAGS=gflags.FLAGS相当于别名。

原文链接:https://blog.csdn.net/chdhust/article/details/50428114 

https://blog.csdn.net/CoderPai/article/details/80420744

 

以上是关于Python中使用gflags的主要内容,如果未能解决你的问题,请参考以下文章

Google开源命令行解析工具gflags

Gflags 简明使用

google gflags 库的下载和使用

google gflag使用方法举例

google gflags 库的下载和使用

用Google的gflags优雅的解析命令行参数