-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
64 lines (45 loc) · 1.66 KB
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import telebot
from telebot.types import Message
import random
from flask import Flask, request
import os
bot_token = '672782236:AAGoWrNm-TtgElTe8Lb5jLTJvgm4yVuk6Wo'
bot = telebot.TeleBot(token=bot_token)
server = Flask(__name__)
picfile = 'pics.txt'
audiofile = 'audio.txt'
quotefile = 'quotes.txt'
with open(picfile) as p, open(audiofile) as a, open(quotefile) as q:
plines = p.readlines()
alines = a.readlines()
qlines = q.readlines()
@bot.message_handler(commands=['help'])
def send_welcome(message):
bot.reply_to(message, '/zetti - pics\n/baghi - audio\n/donzetti - testo')
@bot.message_handler(commands=['zetti'])
def send_rand_photo(message):
photo = random.choice(plines)
bot.send_photo(message.chat.id, photo, random.choice(qlines))
@bot.message_handler(commands=['baghi'])
def send_rand_audio(message):
audio = random.choice(alines)
bot.send_voice(message.chat.id, audio)
@bot.message_handler(commands=['donzetti'])
def send_rand_quote(message):
quote = random.choice(qlines)
bot.send_message(message.chat.id, quote)
@bot.message_handler(func=lambda msg: msg.text is not None and 'brother' in msg.text)
def at_answer(message):
quote = random.choice(qlines)
bot.reply_to(message, quote)
@server.route('/' + TOKEN, methods=['POST'])
def getMessage():
bot.process_new_updates([telebot.types.Update.de_json(request.stream.read().decode("utf-8"))])
return "!", 200
@server.route("/")
def webhook():
bot.remove_webhook()
bot.set_webhook(url='https://vast-stream-79139.herokuapp.com/' + TOKEN)
return "!", 200
if __name__ == "__main__":
server.run(host="0.0.0.0", port=int(os.environ.get('PORT', 5000)))