Skip to content

Instantly share code, notes, and snippets.

@ifduyue
Last active October 2, 2015 01:48
Show Gist options
  • Save ifduyue/2148359 to your computer and use it in GitHub Desktop.
Save ifduyue/2148359 to your computer and use it in GitHub Desktop.
2_urlfetch.py
#!/usr/bin/env python
#-*- coding: utf-8 -*-
# http://pypi.python.org/pypi/urlfetch
import urlfetch
r = urlfetch.get('https://api.github.com', auth=('user', 'pass'))
print r.status
print r.headers['content-type']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment