Python post、get百度(登陆)

[python]  view plain copy
  1. python get百度获得搜索结果  
  2.   
  3. # -*- coding: cp936 -*-  
  4. import urllib2,urllib,sys,io  
  5. """ 
  6. 使用GET在百度搜索引擎上查询 
  7. 此例演示如何生成GET串,并进行请求. 
  8. """  
  9. url = "http://www.baidu.com/s"  
  10. search = [('w','codemo')]  
  11. getString = url + "?" + urllib.urlencode(search)  
  12.   
  13. req = urllib2.Request(getString)  
  14. fd = urllib2.urlopen(req)  
  15. baiduResponse=""  
  16. while 1:  
  17.     data= fd.read(1024)  
  18.     if not len(data):  
  19.         break  
  20.     baiduResponse+=data  
  21. fobj=open("baidu.html",'w')  
  22. fobj.write(baiduResponse)  
  23. fobj.close()  



[python]  view plain copy
  1. python 百度登录  
  2.   
  3. import sys, urllib2,gzip,StringIO  
  4.   
  5. params = "charset=utf-8&codestring=&token=96f08093303c5c0b3f4a62acb8c04898&isPhone=false&index=0&u=http%3A%2F%2Fwww.baidu.com%2F&safeflg=0&staticpage=https%3A%2F%2Fpassport.baidu.com%2Fv2Jump.html&loginType=1&tpl=mn&callback=parent.bdPass.api.login._postCallback&username=codemo&password=codemopass&verifycode=&mem_pass=on"    
  6. headers = {    
  7.   "Accept""image/gif, */*",    
  8.   "Referer""https://passport.baidu.com/v2/?login&tpl=mn&u=http%3A%2F%2Fwww.baidu.com%2F",    
  9.   "Accept-Language""zh-cn",    
  10.   "Content-Type""application/x-www-form-urlencoded",    
  11.   "Accept-Encoding""gzip, deflate",    
  12.   "User-Agent""Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",    
  13.   "Host""passport.baidu.com",    
  14.   "Connection""Keep-Alive",    
  15.   "Cache-Control""no-cache"    
  16. }  
  17. request = urllib2.Request(  
  18. url = 'https://passport.baidu.com/v2/api/?login',  
  19. data = params,  
  20. headers=headers  
  21. )  
  22. response = urllib2.urlopen(request)  
  23. if response.info().get('Content-Encoding') == 'gzip':  
  24.     print 'gzip enabled'  
  25.     buf = StringIO.StringIO(response.read())  
  26.     f = gzip.GzipFile(fileobj=buf)  
  27.     data = f.read()  
  28. else:  
  29.     data = response.read()  
  30. print "Success-----------------""\n",data  

你可能感兴趣的:(Python post、get百度(登陆))