Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from amanobot.loop import MessageLoop
- from amanobot import glance,Bot
- from time import sleep
- from random import randint
- from pprint import pprint
- bot=Bot("meu token")
- id = 'meu id' #eu
- def receber(msg):
- content_type, chat_type, chatID = glance(msg)
- #pprint(msg)
- arquivo = frases()
- if msg['text'] == '/start':
- bot.sendMessage(chatID,"Bem vindo. Fique atento para novas postagens!")
- elif msg['text'] == '/sobre':
- bot.sendMessage(chatID,"Basicamente eu tenho um banco de dados contendo diversas frases e informações, e eu as envio de forma aleatoria!")
- else:
- mID = msg['message_id']
- bot.sendMessage(id, arquivo,reply_to_message_id=mID)
- def frases():
- frase=[]
- with open('texto.txt','r',encoding='UTF-8') as txt:
- txt.seek(0)
- for i in txt.readlines():
- frase.append(i)
- lista = list(map(lambda l: l.replace('\n', ''), frase))
- return lista
- MessageLoop(bot, receber).run_forever()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement