Keenetic SSH: standalone Telegram bot for Keenetic router SSH control

Made-with: Cursor
This commit is contained in:
Андрей Бобырев
2026-04-24 12:01:05 +03:00
commit 788477d5c6
13 changed files with 554 additions and 0 deletions

10
keenetic_ssh/app.py Normal file
View File

@@ -0,0 +1,10 @@
import asyncio, logging, sys
def main():
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)s %(name)s: %(message)s",
stream=sys.stdout,
)
from .bot import telegram_loop
asyncio.run(telegram_loop())