telethon TypeError: An asyncio.Future, a coroutine or an awaitable is required解决
生活随笔
收集整理的這篇文章主要介紹了
telethon TypeError: An asyncio.Future, a coroutine or an awaitable is required解决
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
使用telethon包的時候,上傳文件到tg機器人,遇到以下報錯
TypeError: An asyncio.Future, a coroutine or an awaitable is required實際使用:
from telethon import TelegramClientclient = TelegramClient(name, api_id, api_hash)def sendFileMsg():client.send_file("+852xxxxxxx", 'test.txt', voice_note=True)with client:client.loop.run_until_complete(sendFileMsg())這個報錯實際看文檔能大概知道是什么原因,文檔里示范client的使用:
from telethon import TelegramClientclient = TelegramClient(name, api_id, api_hash)async def main():# Now you can use all client methods listed below, like for example...await client.send_message('me', 'Hello to myself!')with client:client.loop.run_until_complete(main())client.loop.run_until_complete直接調用的時候,方法需要異步,即修改為:
async def sendFileMsg():client.send_file("+852xxxxxxx", 'test.txt', voice_note=True)總結
以上是生活随笔為你收集整理的telethon TypeError: An asyncio.Future, a coroutine or an awaitable is required解决的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2021-05-31IDC销售管理系统—
- 下一篇: 推荐 :机器学习x环境科学:实时预测下一