text argparse示例python

Posted

tags:

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

import argparse

parser = argparse.ArgumentParser(description='Create Plot from csv file')
parser.add_argument('-file_name', metavar='file_name', type=str, help='The csv file to convert', required=True)
parser.add_argument('-trend_name', metavar='trend_name', type=str, help='The name of the trend (will appear in the title of the chart)', required=True)
parser.add_argument('-output_file', metavar='output_file', type=str, help='The name of the html output file', required=True)
parser.add_argument('-yaxis', metavar='yaxis', type=str, help='The YAXIS name', required=True)

args = parser.parse_args()

file_name = args.file_name
trend_name = args.trend_name
output_file = args.output_file
yaxis = args.yaxis

以上是关于text argparse示例python的主要内容,如果未能解决你的问题,请参考以下文章

python 使用argparse模块的Python命令行参数示例

python 使用argparse模块的Python命令行参数示例

python 使用argparse模块的Python命令行参数示例

python 使用argparse模块的Python命令行参数示例

python学习之argparse模块的使用

Python 杂记:argparse 模块