repo.or.cz
/
colly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Doctest skeleton added.
[colly.git]
/
colly
/
optbase.py
blob
68f10456e72ca7eb9900b346e586d5416182c386
1
import
optparse
2
from
colly
import
__version__
3
4
parser
=
optparse
.
OptionParser
(
5
usage
=
'%prog COMMAND [OPTIONS]'
,
6
version
=
__version__
,
7
add_help_option
=
False
)
8
9
parser
.
add_option
(
10
'-h'
,
'--help'
,
11
dest
=
'help'
,
12
action
=
'store_true'
,
13
help
=
'Show help'
)
14
15
parser
.
disable_interspersed_args
()