DmitrMakeev commited on
Commit
e324722
·
verified ·
1 Parent(s): faf5324

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -11
app.py CHANGED
@@ -14,7 +14,7 @@ from io import BytesIO
14
 
15
 
16
 
17
- import telepot
18
 
19
 
20
  from werkzeug.utils import secure_filename
@@ -676,17 +676,7 @@ def view_image():
676
 
677
 
678
 
679
- bot = telepot.Bot('bot7766407698:AAGZHEbUuiOri4_YzZ7hDPSD6U8MGMXXSnA')
680
-
681
- def handle_message(msg):
682
- content_type, chat_type, chat_id = telepot.glance(msg)
683
- if content_type == 'text':
684
- command = msg['text']
685
- if command == '/start':
686
- username = msg['from']['first_name']
687
- bot.sendMessage(chat_id, f"Привет, {username}!")
688
 
689
- bot.message_loop(handle_message)
690
 
691
 
692
 
 
14
 
15
 
16
 
17
+
18
 
19
 
20
  from werkzeug.utils import secure_filename
 
676
 
677
 
678
 
 
 
 
 
 
 
 
 
 
679
 
 
680
 
681
 
682