2012-10-19 11:37:51 -04:00
|
|
|
#!/usr/bin/python
|
2012-11-26 10:55:22 -05:00
|
|
|
# Copyright (C) 2012 Humbug, Inc.
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person
|
|
|
|
# obtaining a copy of this software and associated documentation files
|
|
|
|
# (the "Software"), to deal in the Software without restriction,
|
|
|
|
# including without limitation the rights to use, copy, modify, merge,
|
|
|
|
# publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
# and to permit persons to whom the Software is furnished to do so,
|
|
|
|
# subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
2012-10-19 11:37:51 -04:00
|
|
|
import sys
|
2012-11-26 12:17:35 -05:00
|
|
|
from os import path
|
2012-10-19 11:37:51 -04:00
|
|
|
import optparse
|
|
|
|
|
|
|
|
usage = """print-next-message --user=<email address> [options]
|
|
|
|
|
|
|
|
Prints out the next message received by the user.
|
|
|
|
|
2012-11-26 11:00:59 -05:00
|
|
|
Example: print-next-messages --user=tabbott@humbughq.com --site=https://zephyr.humbughq.com
|
2012-10-19 11:37:51 -04:00
|
|
|
"""
|
|
|
|
parser = optparse.OptionParser(usage=usage)
|
2012-11-26 12:25:35 -05:00
|
|
|
parser.add_option('--site', default='https://humbughq.com')
|
|
|
|
parser.add_option('--api-key')
|
|
|
|
parser.add_option('--user')
|
2012-10-19 11:37:51 -04:00
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
2012-12-03 12:23:06 -05:00
|
|
|
sys.path.append(path.join(path.dirname(__file__), '..'))
|
|
|
|
import humbug
|
2012-12-03 12:24:49 -05:00
|
|
|
client = humbug.Client(
|
2012-12-03 12:23:06 -05:00
|
|
|
email=options.user,
|
|
|
|
api_key=options.api_key,
|
|
|
|
verbose=True,
|
|
|
|
site=options.site)
|
2012-10-19 11:37:51 -04:00
|
|
|
|
|
|
|
print client.get_messages({})
|