Calling functions with argparse
Hey guys, I'm having issues calling functions from argpars. This is a simplified version of my script and this works, printing whatever value I give -s or -p
import argparse def main(): parser = argparse.ArgumentParser(description="Do you wish to scan for live hosts or conduct a port scan?") parser.add_argument("-s", dest='ip3octets', action='store', help='Enter the first three octets of the class C network to scan for live hosts') parser.add_argument("-p", dest='ip', action='store',help='conduct a portscan of specified host') args = parser.parse_args() print args.ip3octets print args.ip
This however, which to me is logically identical produces errors:
import argparse def main(): parser = argparse.ArgumentParser(description="Do you wish to scan for live hosts or conduct a port scan?") parser.add_argument("-s", dest='ip3octets', action='store', help='Enter the first three octets of the class C network to scan for live hosts') parser.add_argument("-p", dest='ip', action='store',help='conduct a portscan of specified host') args = parser.parse_args() printip3octets() printip() def printip3octets(): print args.ip3octets def printip(): print args.ip if __name__ == "__main__":main()
Does anyone know where I am going wrong? Thanks very much!
It is not identical, see this question for explanation why.
You have (at least) 2 options:
args
as an argument to your function args
a global variable. I'm not sure if others agree, but personally I would move all the parser functionality to be inside the if
statement, ie, the main would look like:
def main(args):
printip3octets(args)
printip(args)
args
是main()中的局部变量 - 您需要将它作为参数传递,以便在其他函数中使用它。
...
printip3octets(args)
def printip3octets(args):
print args.ip3octets
...
链接地址: http://www.djcxy.com/p/54776.html
上一篇: Python装饰器有哪些常见用途?
下一篇: 用argparse调用函数