我想对我的自定义类使用argparse / sys

时间:2019-11-29 13:03:40

标签: python-3.x argparse sys

我的自定义类的简要版本,该类读取.txt文件并相应地返回输出。

class MyClass:
     def some_method(self, arg1, arg2):
                pass

我需要以这种形式提供解决方案,这是我的main.py文件

def main():
    input_file = sys.argv[1]
    # parse the file and process the command
    # print the output

if __name__ == "__main__":
    main()

我需要从sys.argv[1]中读取文件。

CLI应该像这样工作:

python -m main <absolute_path_to_input_file>

我不知道该如何处理?

0 个答案:

没有答案