So basically i was following the instructions at https://pypi.python.org/pypi/python-telegram-bot, but when i got to the
>>> updates = bot.getUpdates()
>>> print [u.message.photo for u in updates if u.message.photo]
but, my updates is always [] or an empty list. No matter how many text messages i send to it using telegram.
Is there something im doing wrong?
Bonus
i set it to echo, but now even when I tried using
bot.removeTelegramMessageHandler(echo)
the command sends but it still echos. Am i doing something wrong here?
Thanks! :D