Python:使用argparse传递目录

时间:2013-03-12 17:36:11

标签: python argparse

我已经编写了一个文件爬虫,我正在尝试扩展它。我想使用argparse来处理脚本的设置,包括在命令行中传递起始目录。

示例:/var/some/directory/

我还有其他几个参数可以使用,但是我无法正确传递这个目录。我不在乎它之前是否有一个标志,(例如-d /path/to/start/)但我需要确保至少使用这个参数,因为它将是脚本的唯一强制选项跑。

代码示例:

parser = argparse.ArgumentParser(description='py pub crawler...')
parser.add_argument('-v', '--verbose', help='verbose output from crawler', action="store_true")
parser.add_argument('-d', '--dump', help='dumps and replaces existing dictionaries', action="store_true")
parser.add_argument('-f', '--fake', help='crawl only, nothing stored to DB', action="store_true")

args = parser.parse_args()

if args.verbose:
    verbose = True
if args.dump:
    dump = True
if args.fake:
    fake = True

1 个答案:

答案 0 :(得分:4)

只需添加:

parser.add_argument('directory',help='directory to use',action='store')
args = parser.parse_args()行之前

。命令行中的一个简单测试表明它做了正确的事情(在脚本末尾打印args):

$ python test.py /foo/bar/baz
Namespace(directory='/foo/bar/baz', dump=False, fake=False, verbose=False)
$ python test.py
usage: test.py [-h] [-v] [-d] [-f] directory
test.py: error: too few arguments