使用Argparse创建具有多个选项的必需参数?

时间:2018-02-13 03:19:04

标签: python file argparse

如果我正确理解Argparse,则位置参数是用户可以指定的必需参数。我需要使用argparse创建一个位置参数,其中用户可以指定在他/她调出-h选项时显示的某种类型的参数。我尝试过使用add_argument_group,但是当你调出-h选项时,它只是显示一个带有其他参数描述的标题。

def Main():
    parser = argparse.ArgumentParser(description = __doc__, formatter_class = argparse.RawDescriptionHelpFormatter)
    parser.add_argument("input_directory",help = "The input directory where all of the files reside in")

    sub_parser = parser.add_argument_group('File Type')

    sub_parser.add_argument(".txt",help = "The input file is a .txt file")
    sub_parser.add_argument(".n12",help = "The input file is a .n12 file")
    sub_parser.add_argument(".csv",help = "The input file is a .csv file")

    parser.parse_args()

if __name__ == "__main__":
    Main()

因此,当我运行脚本时,我应该指定以运行脚本。如果我选择.txt,.n12或.csv作为我的参数,那么脚本应该运行。但是,如果我没有从列出的3个选项中指定文件类型,则脚本将不会运行。

是否有一个我缺少的argparse函数可以为位置参数指定多个选项?

3 个答案:

答案 0 :(得分:0)

我认为你这太复杂了。如果我正确理解您的问题,您希望用户输入两个参数:目录名称和文件类型。您的应用程序将只接受文件类型的三个值。如何简单地这样做:

import argparse

def Main():
    parser = argparse.ArgumentParser(description = __doc__, formatter_class = argparse.RawDescriptionHelpFormatter)
    parser.add_argument("input_directory", help = "The input directory where all of the files reside in")
    parser.add_argument("file_type", help="One of: .txt, .n12, .csv")
    args = parser.parse_args()
    print(args)

if __name__ == "__main__":
    Main()

...并添加应用程序逻辑以拒绝文件类型的无效值。

您可以通过parse_args()返回的对象访问用户输入的值。

答案 1 :(得分:0)

使用choices=参数强制用户从一组受限制的值中进行选择。

filter(lambda df: df['compare_date'] >= df['updated'], dataframes)

答案 2 :(得分:0)

使用选项分组功能使用add_mutually_exclusive_group()代替add_argument_group()

import argparse


def Main():
    parser = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter)
    parser.add_argument("input_directory", help="The input directory where all of the files reside in")

    group = parser.add_mutually_exclusive_group(required=True)
    group.add_argument("-txt", action='store_true', help="The input file is a .txt file")
    group.add_argument("-n12", action='store_true', help="The input file is a .n12 file")
    group.add_argument("-csv", action='store_true', help="The input file is a .csv file")

    print parser.parse_args()

if __name__ == "__main__":
    Main()