如何使用参数调试Python脚本 - Aptana / Pydev

时间:2013-03-18 20:16:20

标签: python debugging aptana pydev

我想调试传入参数的Python脚本,但是我很难配置IDE接受这些参数并运行我的脚本。我的代码中有以下参数/参数(-y“2012”-year,-s“IL”-state,-e“C:\ document1”-path to source file 1,-t“C:\ document2” -path到源文件2,-f“C:\ document3”-path到源文件3.可能没有必要,但这里是脚本中传入参数的部分:

parser=argparse.ArgumentParser(description='Process a data audit about a state',prefix_chars='-+')

parser.add_argument('-s',help='Specify the state')
parser.add_argument('-y',help='Specify the year')
parser.add_argument('-e',help='Specify the source file')
parser.add_argument('-t',help='Specify the source file')
parser.add_argument('-f',help='Specify the source file')
args=parser.parse_args()

我已经在Debug Configurations菜单中进行了探索,但未能成功找到解决方案。

0 个答案:

没有答案