bot-base/utils/emojis.py
Louis Chauvet 903d43efb3
[bot-base] Ajout de la doc
[config] Début de la réécriture, pour l'instant ca casse tous les modules, je répare demain, écriture d'une partie de la doc
[utils/emojis] Passage à la notation unicode, j'en ai marre des doubles caractères, écriture de la doc
2020-04-14 02:31:36 +02:00

39 lines
935 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from typing import Union
NUMBERS = ["\u0030\u20e3", "\u0031\u20e3", "\u0032\u20e3", "\u0033\u20e3", "\u0034\u20e3", "\u0035\u20e3",
"\u0036\u20e3", "\u0037\u20e3", "\u0038\u20e3", "\u0039\u20e3", "\U0001f51f"]
MINUS = "\u2796"
THUMBS_UP = "\U0001f44d"
THUMBS_DOWN = "\U0001f44e"
WHITE_CHECK_MARK = "\u2705"
def write_with_number(i: Union[int, float]):
"""
Write number with emoji
:Basic usage:
>>> write_with_number(23)
'2⃣3⃣'
>>> write_with_number(-23)
'2⃣3⃣'
>>> write_with_number(-23.34)
'2⃣3⃣.3⃣4⃣'
>>> write_with_number(-1234567890.098)
'1⃣2⃣3⃣4⃣5⃣6⃣7⃣8⃣9⃣0⃣.0⃣9⃣8⃣'
:param i: number to write
:return: string with emojis
"""
s = ""
for c in str(i):
if c == ".":
s += "."
elif c == "-":
s += MINUS
else:
s += NUMBERS[int(c)]
return s