Starchik commited on
Commit
6e2a40e
·
verified ·
1 Parent(s): 6972a90

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -18
main.py CHANGED
@@ -1,8 +1,5 @@
1
- import os
2
- from flask import Flask, request
3
  import telebot
4
-
5
- app = Flask(__name__)
6
 
7
  # Получаем токен Telegram бота из переменной окружения
8
  TELEGRAM_TOKEN = os.getenv('7363136110:AAEbppKQh2kcgWr0TIUOet6m3j3hCWKzlgE')
@@ -20,18 +17,6 @@ def send_welcome(message):
20
  def echo_all(message):
21
  bot.reply_to(message, f"Ты сказал: {message.text}")
22
 
23
- # Роут для приема обновлений от Telegram
24
- @app.route(f'/{TELEGRAM_TOKEN}', methods=['POST'])
25
- def webhook():
26
- json_str = request.get_data(as_text=True)
27
- update = telebot.types.Update.de_json(json_str)
28
- bot.process_new_updates([update])
29
- return "OK", 200
30
-
31
- # Роут для проверки
32
- @app.route('/')
33
- def index():
34
- return 'Telegram bot is running!', 200
35
-
36
  if __name__ == '__main__':
37
- app.run(host='0.0.0.0', port=7860)
 
 
 
1
  import telebot
2
+ import os
 
3
 
4
  # Получаем токен Telegram бота из переменной окружения
5
  TELEGRAM_TOKEN = os.getenv('7363136110:AAEbppKQh2kcgWr0TIUOet6m3j3hCWKzlgE')
 
17
  def echo_all(message):
18
  bot.reply_to(message, f"Ты сказал: {message.text}")
19
 
20
+ # Запуск polling для получения обновлений
 
 
 
 
 
 
 
 
 
 
 
 
21
  if __name__ == '__main__':
22
+ bot.polling(none_stop=True)