如何在 python 中使用 Emojee?

How use Emojee in python?

我写了一个程序 python 3.6,我想在 instagram 中评论 post.i 想在我的评论中使用 Emojee,请参阅 https://www.webpagefx.com/tools/emoji-cheat-sheet/。 我在 python

中使用代码
import emoji
comment(id_pitcure,emoji.emojize('good :wink:'))

我对 post 发表了以下评论,但没有发表 Emojee。

good :wink:

如何解决?

你需要comment(id_pitcure,emoji.emojize('good :wink:', use_aliases=True))