码迷,mamicode.com
首页 > 编程语言 > 详细

python requests库

时间:2017-06-22 21:46:49      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:code   pre   request   sock   pytho   模块   port   nbsp   代理   

#-*-   coding:utf-8   -*-

 

import requests    #导入模块


html = requests.get(url).text #get请求

html = requests.post(url,data = postdata).text # post表单请求

设置socket 代理
proxies = { ‘http‘:‘sock5://127.0.0.1:8080‘, ‘http‘:‘sock5://127.0.0.1:7070‘ } # 添加代理ip 作为参数传入

response = requests.get("https://www.taobao.com",proxies=proxies)
print(response.status_code) #打印网页返回状态

 

python requests库

标签:code   pre   request   sock   pytho   模块   port   nbsp   代理   

原文地址:http://www.cnblogs.com/bobo1657179419/p/7067133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!