I've sent a poll using this:
@bot.message_handler(commands=['start'])
def start(message):
bot.send_poll(message.chat.id,'choose one',['a','b','c'])
but how could I get the answer back?
the documentation say's:
Handle poll answers @bot.poll_answer_handler() # <- passes a PollAnswer type object to your function.
but I didn't know how to use it.