Skip to content

Instantly share code, notes, and snippets.

@flavianmissi
Created September 8, 2011 12:25
Show Gist options
  • Save flavianmissi/1203271 to your computer and use it in GitHub Desktop.
Save flavianmissi/1203271 to your computer and use it in GitHub Desktop.
httplib sample
import httplib
conn = httplib.HTTPConnection("www.google.com")
conn.request('GET', '/')
response = conn.getresponse()
response.status # 302
@lessandro
Copy link

@flavianmissi
Copy link
Author

What a nice app! Thank you!

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