Skip to content

Instantly share code, notes, and snippets.

@nivekmai
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nivekmai/9353564 to your computer and use it in GitHub Desktop.
Save nivekmai/9353564 to your computer and use it in GitHub Desktop.
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-t', '--test', dest='test', action='store_true')
args = parser.parse_args()
print args.test
'''
$python parser.py -t
True
$python parser.py
False
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment