This file contains hidden or 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
# Taken from https://github.com/leandrotoledo/python-telegram-bot/blob/master/telegram/emoji.py | |
"""This module contains a object that represents an Emoji""" | |
class Emoji(object): | |
"""This object represents an Emoji.""" | |
GRINNING_FACE_WITH_SMILING_EYES = b'\xF0\x9F\x98\x81' | |
FACE_WITH_TEARS_OF_JOY = b'\xF0\x9F\x98\x82' |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# Vagrant makefile for VirtualBox | |
box = 'Ubuntu/trusty64' | |
hostname = '' | |
ram = '512' | |
Vagrant.configure(2) do |config| | |
config.vm.box = box | |
config.vm.host_name = hostname |