Created
August 27, 2011 09:38
-
-
Save nfarring/1175192 to your computer and use it in GitHub Desktop.
Python script template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# http://docs.python.org/dev/library/argparse.html | |
import argparse | |
if __name__=='__init__': | |
parser = argparse.ArgumentParser(description='') | |
args = parser.parse_args() | |
print(args) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment