File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Stubs for emoji (Python 2)
2
+ #
3
+ # NOTE: This dynamically typed stub was automatically generated by stubgen.
4
+
5
+ from emoji .core import emojize
6
+ from emoji .core import demojize
7
+ from emoji .core import get_emoji_regexp
8
+ from emoji .unicode_codes import EMOJI_ALIAS_UNICODE
9
+ from emoji .unicode_codes import EMOJI_UNICODE
10
+ from emoji .unicode_codes import UNICODE_EMOJI
11
+ from emoji .unicode_codes import UNICODE_EMOJI_ALIAS
12
+
13
+ __email__ : str
14
+ __source__ : str
15
+ __license__ : str
16
+
17
+
Original file line number Diff line number Diff line change
1
+ # Stubs for emoji.core (Python 3)
2
+ #
3
+ # NOTE: This dynamically typed stub was automatically generated by stubgen.
4
+
5
+ from typing import Any , Text
6
+
7
+ def emojize (string : Text , use_aliases : bool = ..., delimiters : Any = ...): ...
8
+ def demojize (string : Text , delimiters : Any = ...): ...
9
+ def get_emoji_regexp (): ...
10
+ def emoji_lis (string : Any ): ...
11
+
Original file line number Diff line number Diff line change
1
+ # Stubs for emoji.unicode_codes (Python 3)
2
+ #
3
+ # NOTE: This dynamically typed stub was automatically generated by stubgen.
4
+
5
+ from typing import Any
6
+
7
+ EMOJI_UNICODE : Any
8
+ EMOJI_ALIAS_UNICODE : Any
9
+ UNICODE_EMOJI : Any
10
+ UNICODE_EMOJI_ALIAS : Any
You can’t perform that action at this time.
0 commit comments