- 
      
- 
        Save pauldevos/ff806f3464eb2ed327f7 to your computer and use it in GitHub Desktop. 
    urllib2 vs requests
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import urllib2 | |
| gh_url = 'https://api.github.com' | |
| req = urllib2.Request(gh_url) | |
| password_manager = urllib2.HTTPPasswordMgrWithDefaultRealm() | |
| password_manager.add_password(None, gh_url, 'user', 'pass') | |
| auth_manager = urllib2.HTTPBasicAuthHandler(password_manager) | |
| opener = urllib2.build_opener(auth_manager) | |
| urllib2.install_opener(opener) | |
| handler = urllib2.urlopen(req) | |
| print handler.getcode() | |
| print handler.headers.getheader('content-type') | |
| # ------ | |
| # 200 | |
| # 'application/json' | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import requests | |
| r = requests.get('https://api.github.com', auth=('user', 'pass')) | |
| print r.status_code | |
| print r.headers['content-type'] | |
| # ------ | |
| # 200 | |
| # 'application/json' | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment