-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemoij.py
More file actions
23 lines (21 loc) · 894 Bytes
/
emoij.py
File metadata and controls
23 lines (21 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
# from https://github.com/leandrotoledo/python-telegram-bot/blob/master/telegram/emoji.py
# and http://apps.timwhitlock.info/emoji/tables/unicode
# http://www.iemoji.com/view/emoji/182/places/regional-indicator-symbol-letters-de
CAR = b'\xF0\x9F\x9A\x97'
PEDESTRIAN = b'\xF0\x9F\x9A\xB6'
THUMB = b'\xF0\x9F\x91\x8D'
FOOTPRINTS = b'\xF0\x9F\x91\xA3'
NOENTRY = b'\xF0\x9F\x9A\xAB'
CLAPPING_HANDS = b'\xF0\x9F\x91\x8F'
SMILING_FACE = b'\xF0\x9F\x98\x8A'
GEAR = b'\xE2\x9A\x99'
FLAG_IT = b"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"
FLAG_DE = b"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"
FLAG_FR = b"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"
FLAG_RU = b"\xF0\x9F\x87\xB7\xF0\x9F\x87\xBA"
FLAG_NL = b"\xf0\x9f\x87\xb3\xf0\x9f\x87\xb1"
FLAG_PL = b"\xf0\x9f\x87\xb5\xf0\x9f\x87\xb1"
FLAG_EN = b"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"
LEFTWARDS_BLACK_ARROW = b'\xE2\xAC\x85'
PAPER_CLIP = b'\xF0\x9F\x93\x8E'