Skip to content

Instantly share code, notes, and snippets.

@igniteflow
Created May 26, 2016 09:47
Show Gist options
  • Select an option

  • Save igniteflow/8fcf21002f5058c97c27d81d0c6eb223 to your computer and use it in GitHub Desktop.

Select an option

Save igniteflow/8fcf21002f5058c97c27d81d0c6eb223 to your computer and use it in GitHub Desktop.
Slack emoji wall
"""
print out all the emojis to spam your friends Slack clients
"""
import requests
api_token = 'your-api-token'
text = ' '.join([':{}:'.format(e) for e in requests.get('https://slack.com/api/emoji.list?token={}'.format(token)).json()['emoji'].keys()])
print(text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment