All Projects → smashwilson → Slack Emojinator

smashwilson / Slack Emojinator

Licence: mit
Bulk upload emoji into Slack

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Slack Emojinator

Manamoji Slack
Slack emojis for Magic card symbols. Used by Scryfall’s Slack bot.
Stars: ✭ 16 (-94.59%)
Mutual labels:  slack, emoji
Yeetgif
gif effects CLI. single binary, no dependencies. linux, osx, windows. #1 workplace productivity booster. #yeetgif #eggplant #golang
Stars: ✭ 467 (+57.77%)
Mutual labels:  slack, emoji
Partyparrot
🎉 🐦 Very Serious Code ™️ that generates huge slack messages with emojis.
Stars: ✭ 374 (+26.35%)
Mutual labels:  slack, emoji
emojibot
Emojibot is a Slack bot that announces new custom emoji to a specific channel.
Stars: ✭ 17 (-94.26%)
Mutual labels:  emoji, slack
Slack Emoji
My slack emoji collection and download script
Stars: ✭ 91 (-69.26%)
Mutual labels:  slack, emoji
D3 Digest
SlackBot that watch channels looking for links and reactions, and generates digests based on those reactions
Stars: ✭ 15 (-94.93%)
Mutual labels:  slack, emoji
Wdt Emoji Bundle
Slack like emoji picker with apple/ios, twitter/twemoji, google, emojione, facebook, messenger emoji support
Stars: ✭ 411 (+38.85%)
Mutual labels:  slack, emoji
Emojipacks
CLI to bulk upload emojis to your Slack
Stars: ✭ 1,275 (+330.74%)
Mutual labels:  slack, emoji
Emoji Ime Dictionary
日本語で絵文字入力をするための IME 追加辞書 📙 Google 日本語入力などで日本語から絵文字への変換を可能にする IME 拡張辞書です
Stars: ✭ 172 (-41.89%)
Mutual labels:  slack, emoji
slack-emoji-for-techies
100s of Slack emoji, many tech-related
Stars: ✭ 123 (-58.45%)
Mutual labels:  emoji, slack
Papercups
Open-source live customer chat
Stars: ✭ 4,554 (+1438.51%)
Mutual labels:  slack
Node Slack Sdk
Slack Developer Kit for Node.js
Stars: ✭ 2,988 (+909.46%)
Mutual labels:  slack
Emoji
Programatically work with emoji characters
Stars: ✭ 283 (-4.39%)
Mutual labels:  emoji
Android Slidingemojikeyboard
Our Sliding Emoji Keyboard app.
Stars: ✭ 286 (-3.38%)
Mutual labels:  emoji
Python Slack Events Api
Slack Events API adapter for Python (Flask required)
Stars: ✭ 272 (-8.11%)
Mutual labels:  slack
Workbase Server
Slack alternative, email integrated, build with Meteor
Stars: ✭ 284 (-4.05%)
Mutual labels:  slack
Cordova Plugin Native Keyboard
🎹 Add a Slack / WhatsApp - style chat keyboard to your Cordova app!
Stars: ✭ 271 (-8.45%)
Mutual labels:  slack
Slackr
#️⃣ A package to send webhook API messages to Slack.com channels/users from R
Stars: ✭ 269 (-9.12%)
Mutual labels:  slack
Gitmoji Cli
This project provides an easy solution for using gitmoji from your command line. Gitmoji-cli solves the hassle of searching through the gitmoji list. Includes a bunch of options you can play with! 🎉
Stars: ✭ 3,514 (+1087.16%)
Mutual labels:  emoji
Spedittool
An efficient and scalable library for inputing and displaying gif or @mention on graph-text mixed TextView/EditText
Stars: ✭ 292 (-1.35%)
Mutual labels:  emoji

Slack Emojinator

Bulk upload emoji into Slack

Want to create a custom Slack emoji for every pokemon? Slack doesn't currently expose an API endpoint for creating emoji, probably to prevent users from doing exactly what I'm doing, but here's a way to do it anyway.

Creating Emoji

You'll need Python and pip to get started. I recommend using pipenv.

Prepare a directory that contains an image for each emoji you want to create. Remember to respect Slack's specifications for valid emoji images: no greater than 128px in width or height, no greater than 64K in image size. The base filename of each image file should be the name of the emoji (the bit you'll type inside : to display it).

Clone the project and install its prereqs:

libxml is required on your system, if you'd like to use the bulk export script.

git clone https://github.com/smashwilson/slack-emojinator.git
cd slack-emojinator
pipenv install

You'll need to provide your team name (the bit before ".slack.com" in your admin URL) and your session cookie (grab it from your browser). Copy .env.example, fill them in, and source it.

To grab your Slack session cookie:

  • Open your browser's dev tools and copy the value of document.cookie.
  • Go to the Network tab.
  • Re-load your workspace's https://{teamname}.slack.com/customize/emoji page.
  • Find the call to emoji (it is most likely the very top request).
  • Scroll to Request-Headers, copy the value of "Cookie," and add to your .env file.
cp .env.example .env
${EDITOR} .env
source .env

Now you're ready to go. Use a shell glob to invoke upload.py with the emoji files as ARGV:

pipenv run python upload.py ${EMOJI_DIR}/*.png

Exporting Emoji

To export emoji, use export.py and specify an emoji directory:

source .env
pipenv run python export.py path-to-destination/
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].