api/examples: Simplify optparse use
- The default 'default' is None - The default 'dest' is the option name, with - replaced with _ - The default 'action' is 'store' Not coincidentally, these defaults are correct for most of our existing code. (imported from commit 9c6078bd778324e08e1ca214a97281a7bdce08c2)
This commit is contained in:
parent
dd80275354
commit
b65ce435c4
|
@ -32,17 +32,9 @@ Prints out all the public streams in the realm.
|
|||
Example: get-public-streams --user=tabbott@humbughq.com --site=https://zephyr.humbughq.com
|
||||
"""
|
||||
parser = optparse.OptionParser(usage=usage)
|
||||
parser.add_option('--site',
|
||||
dest='site',
|
||||
default="https://humbughq.com",
|
||||
action='store')
|
||||
parser.add_option('--api-key',
|
||||
dest='api_key',
|
||||
default=None,
|
||||
action='store')
|
||||
parser.add_option('--user',
|
||||
dest='user',
|
||||
action='store')
|
||||
parser.add_option('--site', default='https://humbughq.com')
|
||||
parser.add_option('--api-key')
|
||||
parser.add_option('--user')
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
sys.path.append(path.join(path.dirname(__file__), '../..'))
|
||||
|
|
|
@ -32,17 +32,9 @@ Prints out a list of the user's subscriptions.
|
|||
Example: list-subscriptions --user=tabbott@humbughq.com --site=https://zephyr.humbughq.com
|
||||
"""
|
||||
parser = optparse.OptionParser(usage=usage)
|
||||
parser.add_option('--site',
|
||||
dest='site',
|
||||
default="https://humbughq.com",
|
||||
action='store')
|
||||
parser.add_option('--api-key',
|
||||
dest='api_key',
|
||||
default=None,
|
||||
action='store')
|
||||
parser.add_option('--user',
|
||||
dest='user',
|
||||
action='store')
|
||||
parser.add_option('--site', default='https://humbughq.com')
|
||||
parser.add_option('--api-key')
|
||||
parser.add_option('--user')
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
sys.path.append(path.join(path.dirname(__file__), '../..'))
|
||||
|
|
|
@ -32,17 +32,9 @@ Prints out each message received by the indicated user.
|
|||
Example: print-messages --user=tabbott@humbughq.com --site=https://zephyr.humbughq.com
|
||||
"""
|
||||
parser = optparse.OptionParser(usage=usage)
|
||||
parser.add_option('--site',
|
||||
dest='site',
|
||||
default="https://humbughq.com",
|
||||
action='store')
|
||||
parser.add_option('--api-key',
|
||||
dest='api_key',
|
||||
default=None,
|
||||
action='store')
|
||||
parser.add_option('--user',
|
||||
dest='user',
|
||||
action='store')
|
||||
parser.add_option('--site', default='https://humbughq.com')
|
||||
parser.add_option('--api-key')
|
||||
parser.add_option('--user')
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
sys.path.append(path.join(path.dirname(__file__), '../..'))
|
||||
|
|
|
@ -32,17 +32,9 @@ Prints out the next message received by the user.
|
|||
Example: print-next-messages --user=tabbott@humbughq.com --site=https://zephyr.humbughq.com
|
||||
"""
|
||||
parser = optparse.OptionParser(usage=usage)
|
||||
parser.add_option('--site',
|
||||
dest='site',
|
||||
default="https://humbughq.com",
|
||||
action='store')
|
||||
parser.add_option('--api-key',
|
||||
dest='api_key',
|
||||
default=None,
|
||||
action='store')
|
||||
parser.add_option('--user',
|
||||
dest='user',
|
||||
action='store')
|
||||
parser.add_option('--site', default='https://humbughq.com')
|
||||
parser.add_option('--api-key')
|
||||
parser.add_option('--user')
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
sys.path.append(path.join(path.dirname(__file__), '../..'))
|
||||
|
|
|
@ -33,22 +33,10 @@ Example: send-message --type=stream commits
|
|||
Example: send-message --site=https://zephyr.humbughq.com iago@humbughq.com
|
||||
"""
|
||||
parser = optparse.OptionParser(usage=usage)
|
||||
parser.add_option('--site',
|
||||
dest='site',
|
||||
default="https://humbughq.com",
|
||||
action='store')
|
||||
parser.add_option('--api-key',
|
||||
dest='api_key',
|
||||
default=None,
|
||||
action='store')
|
||||
parser.add_option('--sender',
|
||||
dest='sender',
|
||||
default='othello@humbughq.com',
|
||||
action='store')
|
||||
parser.add_option('--type',
|
||||
dest='type',
|
||||
default='private',
|
||||
action='store')
|
||||
parser.add_option('--api-key')
|
||||
parser.add_option('--site', default='https://humbughq.com')
|
||||
parser.add_option('--sender', default='othello@humbughq.com')
|
||||
parser.add_option('--type', default='private')
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
if len(args) == 0:
|
||||
|
|
|
@ -32,21 +32,10 @@ Ensures the user is subscribed to the listed streams.
|
|||
Example: subscribe --user=tabbott@humbughq.com --site=https://zephyr.humbughq.com
|
||||
"""
|
||||
parser = optparse.OptionParser(usage=usage)
|
||||
parser.add_option('--site',
|
||||
dest='site',
|
||||
default="https://humbughq.com",
|
||||
action='store')
|
||||
parser.add_option('--api-key',
|
||||
dest='api_key',
|
||||
default=None,
|
||||
action='store')
|
||||
parser.add_option('--streams',
|
||||
dest='streams',
|
||||
default="",
|
||||
action='store')
|
||||
parser.add_option('--user',
|
||||
dest='user',
|
||||
action='store')
|
||||
parser.add_option('--api-key')
|
||||
parser.add_option('--user')
|
||||
parser.add_option('--site', default='https://humbughq.com')
|
||||
parser.add_option('--streams', default='')
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
sys.path.append(path.join(path.dirname(__file__), '../..'))
|
||||
|
|
|
@ -32,21 +32,10 @@ Ensures the user is not subscribed to the listed streams.
|
|||
Example: unsubscribe --user=tabbott@humbughq.com --site=https://zephyr.humbughq.com
|
||||
"""
|
||||
parser = optparse.OptionParser(usage=usage)
|
||||
parser.add_option('--site',
|
||||
dest='site',
|
||||
default="https://humbughq.com",
|
||||
action='store')
|
||||
parser.add_option('--api-key',
|
||||
dest='api_key',
|
||||
default=None,
|
||||
action='store')
|
||||
parser.add_option('--streams',
|
||||
dest='streams',
|
||||
default="",
|
||||
action='store')
|
||||
parser.add_option('--user',
|
||||
dest='user',
|
||||
action='store')
|
||||
parser.add_option('--api-key')
|
||||
parser.add_option('--user')
|
||||
parser.add_option('--site', default='https://humbughq.com')
|
||||
parser.add_option('--streams', default='')
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
sys.path.append(path.join(path.dirname(__file__), '../..'))
|
||||
|
|
Loading…
Reference in a new issue