Python HTTP客户端

Python HTTP客户端

在http协议中,来自客户端的请求到达服务器,并假定它是有效请求,并获取一些数据和元数据。可以使用python请求模块中提供的各种功能来分析服务器的响应。下面的python程序在客户端运行,并显示服务器发送的响应结果。

取得初步响应

在下面的程序中,requests模块的get方法从服务器获取数据,并以纯文本格式打印。

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.yapf.com
# Date : 2020-08-25
import requests
 r = requests.get('https://httpbin.org/')
 print(r.text)[:200]
  
 

当运行上面的程序时,得到以下输出:

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.yapf.com
# Date : 2020-08-25

 
 
   <meta charset="UTF-8">    <title>httpbin.org</title>    <link 
 href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Source+Code+Pro:300,600|Titillium+
  
                 
相关文章