Skip to content

Instantly share code, notes, and snippets.

@nicholastjohnson
Created November 14, 2014 16:06
Show Gist options
  • Save nicholastjohnson/c386ac41c6795d49eb3c to your computer and use it in GitHub Desktop.
Save nicholastjohnson/c386ac41c6795d49eb3c to your computer and use it in GitHub Desktop.
Send text to any number in the US through Python
import requests
def send_text(numstring, message):
message = {"number":numstring, "message":message}
r = requests.post("http://textbelt.com/text", data=message)
return r.status_code, r.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment