2016-04-07 09:03:22 -04:00
|
|
|
#!/usr/bin/env python
|
2012-12-12 14:23:00 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2013-08-06 15:32:15 -04:00
|
|
|
# Copyright © 2012 Zulip, Inc.
|
2012-11-26 10:55:22 -05:00
|
|
|
#
|
2012-12-12 14:23:00 -05:00
|
|
|
# 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:
|
2012-11-26 10:55:22 -05:00
|
|
|
#
|
2012-12-12 14:23:00 -05:00
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
2012-11-26 10:55:22 -05:00
|
|
|
#
|
2012-12-12 14:23:00 -05:00
|
|
|
# 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-11-26 10:55:22 -05:00
|
|
|
|
2016-03-10 11:15:34 -05:00
|
|
|
from __future__ import print_function
|
2017-07-26 21:39:28 -04:00
|
|
|
import argparse
|
2012-10-11 13:31:21 -04:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
usage = """list-subscriptions [options]
|
2012-10-11 13:31:21 -04:00
|
|
|
|
2012-10-11 15:53:50 -04:00
|
|
|
Prints out a list of the user's subscriptions.
|
2012-10-11 13:31:21 -04:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
Example: list-subscriptions
|
2013-05-29 14:00:27 -04:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
Specify your Zulip API credentials and server in a ~/.zuliprc file or using the options.
|
2012-10-11 13:31:21 -04:00
|
|
|
"""
|
2017-07-28 22:54:42 -04:00
|
|
|
|
2013-08-07 11:51:03 -04:00
|
|
|
import zulip
|
2012-12-12 14:39:12 -05:00
|
|
|
|
2017-07-26 21:39:28 -04:00
|
|
|
parser = zulip.add_default_arguments(argparse.ArgumentParser(usage=usage))
|
|
|
|
options = parser.parse_args()
|
2012-10-11 13:31:21 -04:00
|
|
|
|
2013-08-07 11:51:03 -04:00
|
|
|
client = zulip.init_from_options(options)
|
2012-10-11 13:31:21 -04:00
|
|
|
|
2016-03-10 11:15:34 -05:00
|
|
|
print(client.list_subscriptions())
|