建立连接后出现连接错误

时间:2018-12-20 08:44:38

标签: flask python-asyncio telethon telepot

我在代码中使用 array = new int[5];

Telethon == 1.4.3

由于我也使用了Flask,所以这两个相互干扰,并且出现以下错误:

import telepot
import threading
from telethon import TelegramClient
from flask import Flask, request
from telepot.loop import OrderedWebhook
from telepot.delegate import (
    per_chat_id, create_open, pave_event_space, include_callback_query_chat_id)

class Main_Class(telepot.helper.ChatHandler):
    def __init__(self, *args, **kwargs):
        super(Main_Class, self).__init__(*args, **kwargs)

    def on_chat_message(self, msg):
        content_type, chat_type, chat_id = telepot.glance(msg)
        if content_type == 'text':
            client = TelegramClient('session_name', api_id, api_hash)
            client.connect()
            client.send_message('me', 'Hello World from Telethon!')            

app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def pass_update():
    webhook.feed(request.data)
    return 'OK'
TOKEN = my_token
bot = telepot.DelegatorBot(TOKEN, [
    include_callback_query_chat_id(
        pave_event_space())(
        per_chat_id(types=['private']), create_open, Main_Class, timeout=100000),
])
webhook = OrderedWebhook(bot)

webhook.run_as_thread()

我导入了RuntimeError: There is no current event loop in thread 'Thread-1' 并将以下行添加到代码中,问题已解决

asyncio

尽管我已经建立了连接,但仍发生以下错误:

class Main_Class(telepot.helper.ChatHandler):
     ......
     loop = asyncio.new_event_loop()
     client = TelegramClient('session_name', api_id, api_hash,loop=loop)
     loop.run_until_complete(goo(loop,client))
     loop.close()
 .....

async def goo(loop,client):
      client.connect()
      await client.send_message('me', 'Hello World from Telethon!') 

1 个答案:

答案 0 :(得分:0)

您还应该等待连接完成。因为它是异步完成的。

async def goo(loop,client):
      await client.connect()
      await client.send_message('me', 'Hello World from Telethon!')

了解更多,here

相关问题