如何使用lib pywhatkit python向whatsapp发送表情符号或图释

q9yhzks0  于 2023-01-24  发布在  Python
关注(0)|答案(2)|浏览(125)

我已经研究过了,没有找到很多内容,有人知道我如何用pywhatkit库向whatsapp发送表情符号吗?
示例代码:

pywhatkit.sendwhatmsg_to_group_instantly(
    'your_group_code', 'Hello :D -> is emoji')
cetgtptt

cetgtptt1#

使用this link获取表情符号的快捷方式代码。
例如,emoji的快捷方式是":two hearts",而对于要替换快捷方式的whatsapp,emoji皮肤必须按"tab",所以在python代码中只需输入emoji快捷方式,然后输入"\t",这使得"tab"函数。💕 is ':two hearts', and for whatsapp to replace the shortcut it is necessary emoji skin is necessary press 'tab', so in the python code just type the emoji shortcut and then '\t' which makes the 'tab' function.
代码:

pywhatkit.sendwhatmsg_to_group_instantly('my_group_code', ":boxing\t helloo")

要查找更多表情符号,只需在WhatsApp聊天中输入":"即可搜索您想要的表情符号,并开发自己的快捷方式。

dxxyhpgq

dxxyhpgq2#

pywhatkit库并不支持在WhatsApp消息中发送表情符号或表情符号,但是你仍然可以使用Unicode表示法在消息中包含表情符号或表情符号。例如,要包含“张着嘴的笑脸”表情符号,你可以在消息字符串中使用Unicode字符U+1F604,如下所示:

pywhatkit.sendwhatmsg_to_group_instantly(
    'Evlr97gngfcKCsC7IcD9i9', 'Hello 😀 -> is emoji')

您可以在线找到各种表情符号和图释的Unicode字符列表,并以这种方式将它们包含在消息字符串中。

相关问题