3

I’m trying to have a bot that is part of a group conduct polls based on certain parameters it receives instead of the users of the group creating the polls themselves. Is this possible?

Carlos F
  • 893
  • 2
  • 12
  • 30

1 Answers1

2

Yes, a bot can create and send Polls to anywhere in Telegram.

Referring to python-telegram-bot, this can be done with context.bot.send_poll(chat_id, question, options)

Check out these documentations of sendPoll():

Telegram Bot API Docs

python-telegram-bot Docs

Gagan T K
  • 588
  • 2
  • 13