Skip to content

Instantly share code, notes, and snippets.

@bryanhelmig
Created March 21, 2012 03:02
Show Gist options
  • Select an option

  • Save bryanhelmig/2143961 to your computer and use it in GitHub Desktop.

Select an option

Save bryanhelmig/2143961 to your computer and use it in GitHub Desktop.
EmailPie Samples
import requests
import simplejson
params = {'email': 'email@totest.com'}
response = requests.get('http://emailpie.com/v1/check', params=params)
response = simplejson.loads(response.content)
print(response)
@bryanhelmig
Copy link
Copy Markdown
Author

thanks to @ctshryock for the ruby fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment