当前位置: 首页 > news >正文

编程代写有哪些平台/上海牛巨微seo

编程代写有哪些平台,上海牛巨微seo,wordpress人个网站,广告设计这个行业怎么样Requests 是用Python语言编写,基于 urllib,采用 Apache2 Licensed 开源协议的 HTTP 库。它比 urllib 更加方便,可以节约我们大量的工作,完全满足 HTTP 测试需求 一、安装 Requests 通过pip安装 Code example:1 $ pip install req…

Requests 是用Python语言编写,基于 urllib,采用 Apache2 Licensed 开源协议的 HTTP 库。它比 urllib 更加方便,可以节约我们大量的工作,完全满足 HTTP 测试需求

一、安装 Requests

通过pip安装

 

Code example:

1

$ pip install requests

 

或者,下载代码后安装:

 

Code example:

1

2

3

$ git clone git://github.com/kennethreitz/requests.git

cd requests

$ python setup.py install

 

再懒一点,通过IDE安装吧,如pycharm!

二、发送请求与传递参数

先来一个简单的例子吧!让你了解下其威力:

 

Code example:

1

2

3

4

5

6

7

import requests

= requests.get(url='http://www.itwhy.org'# 最基本的GET请求

print(r.status_code) # 获取返回状态

= requests.get(url='http://dict.baidu.com/s', params={'wd':'python'}) #带参数的GET请求

print(r.url)

print(r.text) #打印解码后的返回数据

 

很简单吧!不但GET方法简单,其他方法都是统一的接口样式哦!

requests.get(‘https://github.com/timeline.json’) #GET请求
requests.post(“http://httpbin.org/post”) #POST请求
requests.put(“http://httpbin.org/put”) #PUT请求
requests.delete(“http://httpbin.org/delete”) #DELETE请求
requests.head(“http://httpbin.org/get”) #HEAD请求
requests.options(“http://httpbin.org/get”) #OPTIONS请求

PS:以上的HTTP方法,对于WEB系统一般只支持 GET 和 POST,有一些还支持 HEAD 方法。
带参数的请求实例:

 

Code example:

1

2

3

import requests

requests.get('http://www.dict.baidu.com/s', params={'wd''python'}) #GET参数实例

requests.post('http://www.itwhy.org/wp-comments-post.php', data={'comment''测试POST'})#POST参数实例

 

POST发送JSON数据:

 

Code example:

1

2

3

4

5

import requests

import json

= requests.post('https://api.github.com/some/endpoint', data=json.dumps({'some''data'}))

print(r.json())

 

定制header:

 

Code example:

1

2

3

4

5

6

7

8

9

import requests

import json

data = {'some''data'}

headers = {'content-type''application/json',

'User-Agent''Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'}

= requests.post('https://api.github.com/some/endpoint', data=data, headers=headers)

print(r.text)

 

三、Response对象

使用requests方法后,会返回一个response对象,其存储了服务器响应的内容,如上实例中已经提到的 r.text、r.status_code……
获取文本方式的响应体实例:当你访问 r.text 之时,会使用其响应的文本编码进行解码,并且你可以修改其编码让 r.text 使用自定义的编码进行解码。

 

Code example:

1

2

3

4

= requests.get('http://www.itwhy.org')

print(r.text, 'n{}n'.format('*'*79), r.encoding)

r.encoding = 'GBK'

print(r.text, 'n{}n'.format('*'*79), r.encoding)

 

其他响应:

r.status_code #响应状态码
r.raw #返回原始响应体,也就是 urllib 的 response 对象,使用 r.raw.read() 读取
r.content #字节方式的响应体,会自动为你解码 gzip 和 deflate 压缩
r.text #字符串方式的响应体,会自动根据响应头部的字符编码进行解码
r.headers #以字典对象存储服务器响应头,但是这个字典比较特殊,字典键不区分大小写,若键不存在则返回None
#*特殊方法*#
r.json() #Requests中内置的JSON解码器
r.raise_for_status() #失败请求(非200响应)抛出异常

案例之一:

 

Code example:

1

2

3

4

5

6

7

8

9

10

11

import requests

URL = 'http://ip.taobao.com/service/getIpInfo.php' # 淘宝IP地址库API

try:

= requests.get(URL, params={'ip''8.8.8.8'}, timeout=1)

r.raise_for_status() # 如果响应状态码不是 200,就主动抛出异常

except requests.RequestException as e:

print(e)

else:

result = r.json()

print(type(result), result, sep='n')

 

四、上传文件

使用 Requests 模块,上传文件也是如此简单的,文件的类型会自动进行处理:

 

Code example:

1

2

3

4

5

6

7

8

import requests

url = 'http://127.0.0.1:5000/upload'

files = {'file'open('/home/lyb/sjzl.mpg''rb')}

#files = {'file': ('report.jpg', open('/home/lyb/sjzl.mpg', 'rb'))} #显式的设置文件名

= requests.post(url, files=files)

print(r.text)

 

更加方便的是,你可以把字符串当着文件进行上传:

 

Code example:

1

2

3

4

5

6

7

import requests

url = 'http://127.0.0.1:5000/upload'

files = {'file': ('test.txt', b'Hello Requests.')} #必需显式的设置文件名

= requests.post(url, files=files)

print(r.text)

 

五、身份验证

基本身份认证(HTTP Basic Auth):

 

Code example:

1

2

3

4

5

6

import requests

from requests.auth import HTTPBasicAuth

= requests.get('https://httpbin.org/hidden-basic-auth/user/passwd', auth=HTTPBasicAuth('user''passwd'))

# r = requests.get('https://httpbin.org/hidden-basic-auth/user/passwd', auth=('user', 'passwd')) # 简写

print(r.json())

 

另一种非常流行的HTTP身份认证形式是摘要式身份认证,Requests对它的支持也是开箱即可用的:

 

Code example:

1

requests.get(URL, auth=HTTPDigestAuth('user''pass'))

 

六、Cookies与会话对象

如果某个响应中包含一些Cookie,你可以快速访问它们:

 

Code example:

1

2

3

4

5

import requests

= requests.get('http://www.google.com.hk/')

print(r.cookies['NID'])

print(tuple(r.cookies))

 

要想发送你的cookies到服务器,可以使用 cookies 参数:

 

Code example:

1

2

3

4

5

6

7

import requests

url = 'http://httpbin.org/cookies'

cookies = {'testCookies_1''Hello_Python3''testCookies_2''Hello_Requests'}

# 在Cookie Version 0中规定空格、方括号、圆括号、等于号、逗号、双引号、斜杠、问号、@,冒号,分号等特殊符号都不能作为Cookie的内容。

= requests.get(url, cookies=cookies)

print(r.json())

 

会话对象让你能够跨请求保持某些参数,最方便的是在同一个Session实例发出的所有请求之间保持cookies,且这些都是自动处理的,甚是方便。
下面就来一个真正的实例,如下是快盘签到脚本:

 

Code example:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

import requests

headers = {'Accept''text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',

'Accept-Encoding''gzip, deflate, compress',

'Accept-Language''en-us;q=0.5,en;q=0.3',

'Cache-Control''max-age=0',

'Connection''keep-alive',

'User-Agent''Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'}

= requests.Session()

s.headers.update(headers)

# s.auth = ('superuser', '123')

s.get('https://www.kuaipan.cn/account_login.htm')

_URL = 'http://www.kuaipan.cn/index.php'

s.post(_URL, params={'ac':'account''op':'login'},

data={'username':'****@foxmail.com''userpwd':'********''isajax':'yes'})

= s.get(_URL, params={'ac':'zone''op':'taskdetail'})

print(r.json())

s.get(_URL, params={'ac':'common''op':'usersign'})

 

七、超时与异常

timeout 仅对连接过程有效,与响应体的下载无关。

 

Code example:

1

2

3

4

>>> requests.get('http://github.com', timeout=0.001)

Traceback (most recent call last):

File "<stdin>", line 1in <module>

requests.exceptions.Timeout: HTTPConnectionPool(host='github.com', port=80): Request timed out. (timeout=0.001)

 

所有Requests显式抛出的异常都继承自 requests.exceptions.RequestException:ConnectionError、HTTPError、Timeout、TooManyRedirects。

转载于:https://www.cnblogs.com/dongchi/p/4143569.html

http://www.jmfq.cn/news/5160565.html

相关文章:

  • 郑州便宜网站建设报价/百度推广账户优化方案
  • 给小说网站做编辑/关键词自助优化
  • 网站制作的前期主要是做好什么工作/网络营销推广方法十种
  • 小公司让我用织梦做网站/自己做网站建设
  • 高端网站制作建设/广告设计与制作
  • 浙江自己如何做网站/色盲测试图及答案大全
  • 太原网站制作费用/凤凰网台湾资讯
  • 徐州企业自助建站/成人英语培训
  • 空间网站链接怎么做/营销软件
  • 2022八月热点新闻摘抄/宝鸡seo
  • 青海住房与城乡建设厅网站/建设网站前的市场分析
  • 做门户网站用什么模板/郑州百度推广公司
  • 怎么做自己的一个网站/bt磁力
  • 动态网站开发语言的优势与不足/打开百度网站
  • 做视频网站要什么软件下载/网页一键生成app软件
  • 做投票的网站赚钱嘛/微信朋友圈推广软文
  • 分销网站建设方案/新闻发布
  • 福州做网站/数据网站有哪些
  • jsp网站开发学习心得/营销策划推广
  • 找人做seo要给网站程序/百度网站禁止访问怎么解除
  • 深圳营销型网站联系方式/深圳网络seo推广
  • 网站建设要学哪些/品牌营销策划怎么写
  • 可以做音乐mv视频网站/网站如何快速推广
  • 建网站需要了解什么/阿里数据
  • 做网站有陪标现象吗/广告推广投放平台
  • 独立设计师平台/太原网站建设优化
  • 网站开发 网页设计/seo推广招聘
  • 平面设计软件下载网站/如何制作微信小程序
  • 做网站怎么调用栏目/市场营销七大策略
  • 旅游攻略网站开发背景/靠谱的代运营公司