Spaces:
Sleeping
Sleeping
Aleksandr Maiorov
commited on
Commit
·
98cadc8
1
Parent(s):
7249894
v0.4
Browse files- update
- bot.py +17 -3
- requirements.txt +2 -1
bot.py
CHANGED
@@ -1,30 +1,43 @@
|
|
1 |
import asyncio
|
|
|
|
|
|
|
2 |
import os
|
|
|
|
|
3 |
from telegram import Update
|
4 |
from telegram.ext import Application, CommandHandler, MessageHandler, filters, ContextTypes
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
7 |
|
8 |
# Команды
|
9 |
async def start_command(update: Update, context: ContextTypes.DEFAULT_TYPE):
|
10 |
await update.message.reply_text("Привет! Я простой бот. Напиши что-нибудь, и я повторю!")
|
11 |
|
|
|
12 |
async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE):
|
13 |
await update.message.reply_text("Доступные команды:\n/start - начать общение\n/help - помощь")
|
14 |
|
|
|
15 |
# Обработка текстовых сообщений
|
16 |
async def handle_message(update: Update, context: ContextTypes.DEFAULT_TYPE):
|
17 |
text = update.message.text
|
18 |
print(f"User ({update.message.chat.id}): {text}")
|
19 |
await update.message.reply_text(f"Вы написали: {text}")
|
20 |
|
|
|
21 |
# Ошибки
|
22 |
async def error(update: Update, context: ContextTypes.DEFAULT_TYPE):
|
23 |
print(f"Update {update} caused error {context.error}")
|
24 |
|
|
|
25 |
# Запуск бота
|
26 |
async def start_bot():
|
27 |
-
print("Starting bot
|
28 |
app = Application.builder().token(TOKEN).build()
|
29 |
|
30 |
# Регистрация команд
|
@@ -41,5 +54,6 @@ async def start_bot():
|
|
41 |
print("Polling...")
|
42 |
await app.run_polling(timeout=3)
|
43 |
|
|
|
44 |
if __name__ == "__main__":
|
45 |
-
asyncio.run(start_bot())
|
|
|
1 |
import asyncio
|
2 |
+
|
3 |
+
import nest_asyncio
|
4 |
+
import logging
|
5 |
import os
|
6 |
+
|
7 |
+
from dotenv import load_dotenv
|
8 |
from telegram import Update
|
9 |
from telegram.ext import Application, CommandHandler, MessageHandler, filters, ContextTypes
|
10 |
|
11 |
+
load_dotenv()
|
12 |
+
TOKEN = os.environ.get("TELEGRAM_TOKEN")
|
13 |
+
logging.log(logging.INFO, TOKEN)
|
14 |
+
nest_asyncio.apply()
|
15 |
+
|
16 |
|
17 |
# Команды
|
18 |
async def start_command(update: Update, context: ContextTypes.DEFAULT_TYPE):
|
19 |
await update.message.reply_text("Привет! Я простой бот. Напиши что-нибудь, и я повторю!")
|
20 |
|
21 |
+
|
22 |
async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE):
|
23 |
await update.message.reply_text("Доступные команды:\n/start - начать общение\n/help - помощь")
|
24 |
|
25 |
+
|
26 |
# Обработка текстовых сообщений
|
27 |
async def handle_message(update: Update, context: ContextTypes.DEFAULT_TYPE):
|
28 |
text = update.message.text
|
29 |
print(f"User ({update.message.chat.id}): {text}")
|
30 |
await update.message.reply_text(f"Вы написали: {text}")
|
31 |
|
32 |
+
|
33 |
# Ошибки
|
34 |
async def error(update: Update, context: ContextTypes.DEFAULT_TYPE):
|
35 |
print(f"Update {update} caused error {context.error}")
|
36 |
|
37 |
+
|
38 |
# Запуск бота
|
39 |
async def start_bot():
|
40 |
+
print(f"Starting bot...${TOKEN}")
|
41 |
app = Application.builder().token(TOKEN).build()
|
42 |
|
43 |
# Регистрация команд
|
|
|
54 |
print("Polling...")
|
55 |
await app.run_polling(timeout=3)
|
56 |
|
57 |
+
|
58 |
if __name__ == "__main__":
|
59 |
+
asyncio.run(start_bot()) # З
|
requirements.txt
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
fastapi
|
2 |
uvicorn[standard]
|
3 |
huggingface-hub
|
4 |
-
python-telegram-bot
|
|
|
|
1 |
fastapi
|
2 |
uvicorn[standard]
|
3 |
huggingface-hub
|
4 |
+
python-telegram-bot
|
5 |
+
python-dotenv
|