Skip to content

Instantly share code, notes, and snippets.

View antoniocesar16's full-sized avatar

Antônio César antoniocesar16

View GitHub Profile
@scturtle
scturtle / polling.py
Created June 25, 2015 12:28
telegram bot (long polling)
#!/usr/bin/env python3
import requests
prefix = 'https://api.telegram.org/bot'
key = ''
geturl = prefix + key + '/getUpdates'
sendurl = prefix + key + '/sendMessage'
timeout = 60