TL;DR
Une histoire sur l'automatisation de l'enregistrement des emojis pour slack.
https://github.com/smashwilson/slack-emojinator Comme écrit ici.
git clone https://github.com/smashwilson/slack-emojinator.git
cd slack-emojinator
pip install -r requirements.txt
Je viens de recevoir une telle demande, alors je l'ai essayé.
cp .env.sample .env
vim .env
.env
export SLACK_TEAM=ssmjp
export SLACK_COOKIE="(Mettez-le entre guillemets et collez le tout)"
export SLACK_API_TOKEN= #Il reste vide ici
export EMOJI_DIR=
wget http://cultofthepartyparrot.com/parrots/parrot.gif
source .env
output
python upload.py parrot.gif
Processing parrot.gif.
Uploaded 1 emojis. (0 already existed)
Vous pouvez maintenant ajouter l'emoji : parrot:
.
git clone https://github.com/jmhobbs/cultofthepartyparrot.com
cd cultofthepartyparrot.com/parrots
for f in * ; do mv "$f" "parrot_$f" ; done
.env
export EMOJI_DIR=../cultofthepartyparrot.com/parrots
source .env
python upload.py ${EMOJI_DIR}/*.gif
Recommended Posts