真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯網站制作重慶分公司

Python中怎么操作HTTP

本篇文章為大家展示了Python中怎么操作 HTTP,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

站在用戶的角度思考問題,與客戶深入溝通,找到正定網站設計與正定網站推廣的解決方案,憑借多年的經驗,讓設計與互聯網技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網站設計制作、網站建設、企業(yè)官網、英文網站、手機端網站、網站推廣、主機域名、虛擬空間、企業(yè)郵箱。業(yè)務覆蓋正定地區(qū)。

Python HTTP操作代碼示例:

  1. import urllib2,cookielib  

  2. class HTTPRefererProcessor(urllib2.BaseHandler):  

  3. def __init__(self):  

  4. self.referer = None   

  5. def http_request(self, request):  

  6. if ((self.referer is not None) and  

  7. not request.has_header("Referer")):  

  8. request.add_unredirected_header("Referer", self.referer)  

  9. return request   

  10. def http_response(self, request, response):  

  11. self.referer = response.geturl()  

  12. return response   

  13. https_request = http_request 

  14. https_response = http_response   

  15. cj = cookielib.CookieJar()  

  16. opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj),
     HTTPRefererProcessor(),)  

  17. urllib2.install_opener(opener)   

  18. data = 'msisdn=999999' 

  19. request = urllib2.Request(  

  20. url = 'http://203.117.16.171:8080/webgamecode/webcore?action=topup',  

  21. headers = {'Content-Type': 'application/x-www-form-urlencoded'},  

  22. datadata = data)  

  23. ret = opener.open(request)  

  24. content = ret.read()   

  25. print content  

上述內容就是Python中怎么操作 HTTP,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創(chuàng)新互聯行業(yè)資訊頻道。


文章題目:Python中怎么操作HTTP
鏈接分享:http://weahome.cn/article/pocppd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部