Send dm when user react to emoji

Send dm when user react to message. ✅ Setup: – Put the token on config file. – Put the message id to listen react. – Put delay before dm. – Put your message. 👀 If you don’t have proxies, desactivate proxy option, or buy them from my shop :p    

Read more

Emoji terminal output for Python

Emoji Emoji for Python. This project was inspired by kyokomi. Example The entire set of Emoji codes as defined by the unicode consortium is supported in addition to a bunch of aliases. By default, only the official list is enabled but doing emoji.emojize(use_aliases=True) enables both the full list and aliases. >> import emoji >> print(emoji.emojize(‘Python is :thumbs_up:’)) Python is 👍 >> print(emoji.emojize(‘Python is :thumbsup:’, use_aliases=True)) Python is 👍 >> print(emoji.demojize(‘Python is 👍’)) Python is :thumbs_up: >>> print(emoji.emojize(“Python is fun :red_heart:”)) […]

Read more

Train emoji embeddings based on emoji descriptions

emoji2vec This is my attempt to train, visualize and evaluate emoji embeddings as presented by Ben Eisner, Tim Rocktäschel, Isabelle Augenstein, Matko Bošnjak, and Sebastian Riedel in their paper. Most of their results are used here to build an equivalently robust model in Keras, including the rather simple training process which is solely based on emoji descriptions, but instead of using word2vec (as it was originally proposed) this version uses global vectors. Overview src/ contains the code used to process […]

Read more