We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
With this snippet at the end of a .py file, it can also be used as a standalone app besides of importing it as a module.
if __name__=="__main__": if len(sys.argv)>1: try: main(sys.argv[1:]) except: print "OOPS: main() failed" print traceback.format_exc() else: print "usage: %s [arguments]" % sys.argv[0]