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 os | |
import requests | |
SLACK_API_TOKEN='' # Your token here | |
FROM_CHANNEL_ID='' # Get the id from the bottom of the channel description | |
NEW_CHANNEL_ID='' | |
LIMIT=200 # default limit was 100 need to change based on size | |
members = requests.get('https://slack.com/api/conversations.members?token=%s&channel=%s&limit=%s' % (SLACK_API_TOKEN, FROM_CHANNEL_ID, LIMIT)).json()['members'] | |
existing_members = requests.get('https://slack.com/api/conversations.members?token=%s&channel=%s&limit=%s' % (SLACK_API_TOKEN, NEW_CHANNEL_ID, LIMIT)).json()['members'] |
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
@font-face { | |
font-family: "Source Sans Pro Semibold"; | |
src: url("chrome-extension://dgmanlpmmkibanfdgjocnabmcaclkmod/fonts/SourceSansPro-Semibold.ttf"); | |
} | |
@font-face { | |
font-family: "Source Sans Pro Bold"; | |
src: url("chrome-extension://dgmanlpmmkibanfdgjocnabmcaclkmod/fonts/SourceSansPro-Bold.ttf"); | |
} |