2016-04-07 09:03:22 -04:00
|
|
|
#!/usr/bin/env python
|
2013-02-11 11:54:01 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2014-02-04 14:15:02 -05:00
|
|
|
# Copyright © 2014 Zulip, Inc.
|
2013-02-11 11:54:01 -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:
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2016-03-10 11:15:34 -05:00
|
|
|
from __future__ import print_function
|
2017-07-26 21:39:28 -04:00
|
|
|
import argparse
|
2013-02-11 11:54:01 -05:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
usage = """list-members [options]
|
2013-02-11 11:54:01 -05:00
|
|
|
|
|
|
|
List the names and e-mail addresses of the people in your realm.
|
2013-05-29 14:00:27 -04:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
Example: list-members
|
|
|
|
|
|
|
|
Specify your Zulip API credentials and server in a ~/.zuliprc file or using the options.
|
2013-02-11 11:54:01 -05:00
|
|
|
"""
|
|
|
|
|
2013-08-07 11:51:03 -04:00
|
|
|
import zulip
|
2013-02-11 11:54:01 -05:00
|
|
|
|
2017-07-26 21:39:28 -04:00
|
|
|
parser = zulip.add_default_arguments(argparse.ArgumentParser(usage=usage))
|
|
|
|
options = parser.parse_args()
|
2013-02-11 11:54:01 -05:00
|
|
|
|
2013-08-07 11:51:03 -04:00
|
|
|
client = zulip.init_from_options(options)
|
2013-02-11 11:54:01 -05:00
|
|
|
|
2013-06-24 14:34:45 -04:00
|
|
|
for user in client.get_members()["members"]:
|
2016-03-10 11:15:34 -05:00
|
|
|
print(user["full_name"], user["email"])
|