Skip to content

Instantly share code, notes, and snippets.

@libfun
Created March 20, 2017 16:47
Show Gist options
  • Save libfun/024b04ed51c091718d731d7fe42e003d to your computer and use it in GitHub Desktop.
Save libfun/024b04ed51c091718d731d7fe42e003d to your computer and use it in GitHub Desktop.
import telepot
bot = telepot.Bot('key')
response = bot.getUpdates()
botid = bot_id
def sendMessage(z):
try:
bot.sendMessage(botid, z)
except:
print('Error sending message', z)
def sendPhoto(f):
try:
bot.sendPhoto(botid, f)
except:
print('Error sending photo')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment