Skip to content

Instantly share code, notes, and snippets.

@sagnew
Created September 4, 2015 22:03
Show Gist options
  • Save sagnew/35504609e13fcfe544ef to your computer and use it in GitHub Desktop.
Save sagnew/35504609e13fcfe544ef to your computer and use it in GitHub Desktop.
PennApps demo make phones ring
from twilio.rest import TwilioRestClient
client = TwilioRestClient()
for msg in client.messages.iter(to='74310', date_sent='2015-09-04'):
client.calls.create(to=msg.from_, from_='+16103475323',
url='http://gnarly.io/pennappsvoice.xml')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment