Skip to content

Instantly share code, notes, and snippets.

@bahoo
Created February 2, 2017 21:28
Show Gist options
  • Save bahoo/59d81fc0f916d18658b1915ab615e116 to your computer and use it in GitHub Desktop.
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
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'])
@jukou
Copy link

jukou commented Jun 12, 2018

How exactly do I use this script?

@nickcanfield29
Copy link

Hi there,

I updated your code and made it a bit more user friendly. Check it out here: https://github.com/nickcanfield29/Download-Slack-Channel-Users/blob/master/Get_Slack_Channel_Users.py

@tissue1231
Copy link

Hey Nick,

This works well, but it seems to be having issues seeing private channels even though I'm a member. Any ideas on why that would be. I have the groups:read scope.

@nickcanfield29
Copy link

nickcanfield29 commented May 18, 2020 via email

@nickcanfield29
Copy link

nickcanfield29 commented May 18, 2020 via email

@tissue1231
Copy link

Hey @nickcanfield29,

Thanks for the quick update on this. I tested it on both private and public and the export is showing up blank for both now.

@nickcanfield29
Copy link

nickcanfield29 commented May 21, 2020 via email

@jaipandya
Copy link

In case you are looking for a no-code solution, you can use Channel Tools app for Slack. Amongst other things, it can help you export a list of users in a Slack channel.

@trustdan
Copy link

Hey Nick,

This works well, but it seems to be having issues seeing private channels even though I'm a member. Any ideas on why that would be. I have the groups:read scope.

I just drag and copied in the windows app. worked pretty gud

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment