簡體   English   中英

看門狗和使用 Telethon 發送消息

[英]Watchdog and sending messages with Telethon

我想用看門狗觀察文件系統的變化,並通過 Telethon 發送一條消息,代碼如下:

import time
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
from telethon import TelegramClient, sync, events

api_id = 0000000
api_hash = '*'

client = TelegramClient('Name', api_id, api_hash)
client.start()

class OnMyWatch:
    # Set the directory on watch
    watchDirectory = "/Users/UserID/Desktop/"

    def __init__(self):
        self.observer = Observer()

    def run(self):
        event_handler = Handler()
        self.observer.schedule(event_handler, self.watchDirectory, recursive=True)
        self.observer.start()
        try:
            while True:
                time.sleep(5)
        except:
            self.observer.stop()
            print("Observer Stopped")

        self.observer.join()


class Handler(FileSystemEventHandler):
    @staticmethod
    def on_any_event(event):
        if event.event_type == 'created':
            # Sending a message to myself 
            client.send_message('me', 'A file was created!'),


if __name__ == '__main__':
    watch = OnMyWatch()
    watch.run()

不幸的是,它會引發以下錯誤:

File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/telethon/sync.py", line 35, 
in syncified
loop = asyncio.get_event_loop()

File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/asyncio/events.py", line 642, 
in get_event_loop
raise RuntimeError('There is no current event loop in thread %r.'

RuntimeError: There is no current event loop in thread 'Thread-2'.*

我試圖了解如何在Telethon 中使用 Asyncio,但無法修復它,所以我想在這里獲得一些有價值的提示。

我遇到了同樣的問題,我看到了來自Telethon 的 Asyncio

這只是意味着您沒有為該線程創建循環

所以我在客戶端構建之前添加了兩行。

loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
client = TelegramClient('Name', api_id, api_hash)

它有效。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM