Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
28 lines (25 loc) · 867 Bytes

File metadata and controls

28 lines (25 loc) · 867 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
# Author: James Campbell
# Date: June 9th 2016
# Date Updated:
# What: Example of how to use argparse moduel properly (Python3)
import argparse, sys
parser = argparse.ArgumentParser(description='Example on how to use argparse',
prog="argparse example",
)
parser.add_argument('-a', action="store_false", default=None,
help='Turn A off',
)
parser.add_argument('+a', action="store_true", default=None,
help='Turn A on',
)
parser.add_argument('-v','--version', action='version', version='VERSION 2.0',)
parser.add_argument('--verbose',
action='store_true',
help='verbose flag' )
args = parser.parse_args()
if args.verbose:
print("~ Very Verbose!")
else:
print("~ Not verbose")
sys.exit()
Morty Proxy This is a proxified and sanitized view of the page, visit original site.