如何使用python-telegram-bot将本地存储的贴纸发送到Telegram中的inlinequery

时间:2017-10-24 20:55:42

标签: python-3.x python-telegram-bot

使用https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/inlinebot.py 是否可以更改此bot以发送本地webp(贴纸)文件作为对内联查询的响应?

中学,如果不可能,最方便的解决方法是什么?

Python的版本,python-telegram-bot&依赖关系:

$ python -m telegram

python-telegram-bot 8.1.1
certifi 2017.07.27.1
future 0.16.0
Python 3.5.2 (default, Sep 10 2016, 08:21:44)  [GCC 5.4.0 20160609]

1 个答案:

答案 0 :(得分:0)

您可以使用send_sticker(some_id, open("local_sticker.webp", "rb"))将其发送给自己,然后获取file_id,然后使用InlineQueryCachedSticker获取内联结果。