使用IPython运行带有argparse的模块



假设我有这个文件:

import argparse
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--foo', action='store_true')
args = parser.parse_args()
print(args)

如果我用Python运行它,它运行得很好:

% python -m t --foo
Namespace(foo=True)

然而,用IPython运行它时,我得到了一个错误:

% ipython -m t --foo
usage: ipython [-h] [--debug] [--quiet] [--init] [--autoindent] [--no-autoindent] [--automagic] [--no-automagic] [--pdb] [--no-pdb] [--pprint]
[--no-pprint] [--color-info] [--no-color-info] [--ignore-cwd] [--no-ignore-cwd] [--nosep] [--autoedit-syntax]
[--no-autoedit-syntax] [--simple-prompt] [--no-simple-prompt] [--banner] [--no-banner] [--confirm-exit] [--no-confirm-exit]
[--term-title] [--no-term-title] [--classic] [--quick] [-i] [--profile-dir ProfileDir.location]
[--profile TerminalIPythonApp.profile] [--ipython-dir TerminalIPythonApp.ipython_dir] [--log-level TerminalIPythonApp.log_level]
[--config TerminalIPythonApp.extra_config_file] [--autocall TerminalInteractiveShell.autocall]
[--colors TerminalInteractiveShell.colors] [--logfile TerminalInteractiveShell.logfile]
[--logappend TerminalInteractiveShell.logappend] [-c TerminalIPythonApp.code_to_run] [-m TerminalIPythonApp.module_to_run]
[--ext TerminalIPythonApp.extra_extensions] [--gui TerminalIPythonApp.gui] [--pylab [TerminalIPythonApp.pylab]]
[--matplotlib [TerminalIPythonApp.matplotlib]] [--cache-size TerminalInteractiveShell.cache_size]
[extra_args [extra_args ...]]
ipython: error: argument --foo: expected one argument

如何使用IPython运行它?

(我的最终目标是运行能够从我的脚本中访问正在运行的IPython内核(

正如@hpaulj所说,您可以使用--作为分隔符来指示IPython停止处理参数。这是unix命令中常用的分隔符。

相关内容

  • 没有找到相关文章

最新更新