本文整理汇总了Python中emojipy.Emoji.unicode_to_image方法的典型用法代码示例。如果您正苦于以下问题:Python Emoji.unicode_to_image方法的具体用法?Python Emoji.unicode_to_image怎么用?Python Emoji.unicode_to_image使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类emojipy.Emoji
的用法示例。
在下文中一共展示了Emoji.unicode_to_image方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_emoji_at_start_of_sentence_with_apostrophe
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_at_start_of_sentence_with_apostrophe(self):
unicode = "🐌's are cool!"
shortcode = ":snail:'s are cool!"
image = (
'<img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/png/1f40c.png'
+ self.cache_bust_param
+ "\"/>'s are cool!"
)
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例2: test_emoji_at_end_of_sentence_with_preceeding_colon
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_at_end_of_sentence_with_preceeding_colon(self):
unicode = "Emoji One's official mascot: 🐌"
shortcode = "Emoji One's official mascot: :snail:"
image = (
'Emoji One\'s official mascot: <img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/png/1f40c.png'
+ self.cache_bust_param
+ '"/>'
)
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例3: test_emoji_inside_sentence_with_comma
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_inside_sentence_with_comma(self):
unicode = "The 🐌, is Emoji One's official mascot."
shortcode = "The :snail:, is Emoji One's official mascot."
image = (
'The <img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/png/1f40c.png'
+ self.cache_bust_param
+ "\"/>, is Emoji One's official mascot."
)
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例4: test_emoji_at_start_of_sentence
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_at_start_of_sentence(self):
unicode = "🐌 mail."
shortcode = ":snail: mail."
image = (
'<img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/png/1f40c.png'
+ self.cache_bust_param
+ '"/> mail.'
)
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例5: test_emoji_at_end_of_sentence_with_alternate_punctuation
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_at_end_of_sentence_with_alternate_punctuation(self):
unicode = "Emoji One's official mascot is 🐌!"
shortcode = "Emoji One's official mascot is :snail:!"
image = (
'Emoji One\'s official mascot is <img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/png/1f40c.png'
+ self.cache_bust_param
+ '"/>!'
)
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例6: test_single_unicode_char
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_single_unicode_char(self):
unicode = "🐌"
shortcode = ":snail:"
image = (
'<img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/png/1f40c.png'
+ self.cache_bust_param
+ '"/>'
)
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例7: emoji_replace
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def emoji_replace(text, autoescape=True):
"""
Replaces Unicode and Shortcode emoji's with embedded images,
using the Emojipy library
Args:
text: A string to be matched for shortcode and unicode emojis
autoescape: Optional argument for autoescaping of input string before processing
Returns:
Safe text
"""
# Escape text if it is not safe
autoescape = autoescape and not isinstance(text, SafeData)
if autoescape:
text = escape(text)
text = Emoji.unicode_to_image(text)
text = Emoji.shortcode_to_image(text)
return mark_safe(text)
示例8: unicode_to_image
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def unicode_to_image(text, **kwargs):
return Emoji.unicode_to_image(text, **kwargs)
示例9: test_emoji_inside_object_tag
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_inside_object_tag(self):
unicode = 'The <object class="emojione" data="//cdn.jsdelivr.net/emojione/assets/svg/1f40c.svg" type="image/svg+xml" standby="🐌">🐌</object> is Emoji One\'s official mascot'
self.assertEqual(Emoji.unicode_to_image(unicode), unicode)
self.assertEqual(Emoji.shortcode_to_image(unicode), unicode)
示例10: test_emoji_inside_img_tag
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_inside_img_tag(self):
unicode = 'The <img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/png/1f40c.png" /> is Emoji One\'s official mascot.'
self.assertEqual(Emoji.unicode_to_image(unicode), unicode)
self.assertEqual(Emoji.shortcode_to_image(unicode), unicode)
示例11: test_emoji_at_end_of_sentence
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_at_end_of_sentence(self):
unicode = 'Emoji One\'s official mascot is 🐌.'
shortcode = 'Emoji One\'s official mascot is :snail:.'
image = 'Emoji One\'s official mascot is <img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/png/1F40C.png'+self.cache_bust_param+'"/>.'
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例12: test_emoji_inside_sentence_with_comma
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_inside_sentence_with_comma(self):
unicode = 'The 🐌, is EmojiOne\'s original mascot.'
shortcode = 'The :snail:, is EmojiOne\'s original mascot.'
image = 'The <img class="emojione" alt="🐌" src="https://cdn.jsdelivr.net/emojione/assets/3.1/png/64/1f40c.png"/>, is EmojiOne\'s original mascot.'
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例13: test_unicode_to_image
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_unicode_to_image(self):
txt = 'Hello world! 😄 :smile:'
expected = """Hello world! <img class="emojione" alt="😄" src="https://cdn.jsdelivr.net/emojione/assets/png/1f604.png%s"/> :smile:""" %\
Emoji.cache_bust_param
self.assertEqual(Emoji.unicode_to_image(txt), expected)
示例14: test_emoji_inside_sentence_with_comma
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_emoji_inside_sentence_with_comma(self):
unicode = 'The 🐌, is Emoji One\'s official mascot.'
shortcode = 'The :snail:, is Emoji One\'s official mascot.'
image = 'The <img class="emojione" alt="🐌" src="//cdn.jsdelivr.net/emojione/assets/png/1F40C.png'+self.cache_bust_param+'"/>, is Emoji One\'s official mascot.'
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)
示例15: test_single_unicode_char
# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import unicode_to_image [as 别名]
def test_single_unicode_char(self):
unicode = '🐌'
shortcode = ':snail:'
image = '<img class="emojione" alt="🐌" src="//cdn.jsdelivr.net/emojione/assets/png/1F40C.png'+self.cache_bust_param+'"/>'
self.assertEqual(Emoji.unicode_to_image(unicode), image)
self.assertEqual(Emoji.shortcode_to_image(shortcode), image)