Created
February 2, 2017 21:28
-
-
Save bahoo/59d81fc0f916d18658b1915ab615e116 to your computer and use it in GitHub Desktop.
Export users (first name, last name, email address) from a given Slack channel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
SLACK_API_TOKEN = "xoxo-asdfghjkl..." # get one from https://api.slack.com/docs/oauth-test-tokens | |
CHANNEL_NAME = "general" | |
channel_list = requests.get('https://slack.com/api/channels.list?token=%s' % SLACK_API_TOKEN).json()['channels'] | |
channel = filter(lambda c: c['name'] == CHANNEL_NAME, channel_list)[0] | |
channel_info = requests.get('https://slack.com/api/channels.info?token=%s&channel=%s' % (SLACK_API_TOKEN, channel['id'])).json()['channel'] | |
members = channel_info['members'] | |
users_list = requests.get('https://slack.com/api/users.list?token=%s' % SLACK_API_TOKEN).json()['members'] | |
users = filter(lambda u: u['id'] in members, users_list) | |
for user in users: | |
first_name, last_name = '', '' | |
if user['real_name']: | |
first_name = user['real_name'] | |
if ' ' in user['real_name']: | |
first_name, last_name = user['real_name'].split() | |
print "%s,%s,%s" % (first_name, last_name, user['profile']['email']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just drag and copied in the windows app. worked pretty gud