1. 程式人生 > 其它 >Requests(1):Requests模組簡介與安裝

Requests(1):Requests模組簡介與安裝

Requests模組簡介

  在python的標準庫中,雖然提供了urllib,utllib2,httplib,但是做介面測試,requests使用更加方便快捷,正如官方說的,“讓HTTP服務人類”。

  Requests是用python語言基於urllib編寫的,採用的是Apache2 Licensed開源協議的HTTP庫,Requests它會比urllib更加方便,可以節約我們大量的工作。

Requests模組安裝

安裝方式一:

執行pip install requests 聯網安裝requests

安裝方式二:

進入https://pypi.org/project/requests/

下載並解壓requests-2.19.1.tar.gz,然後用cmd進入解壓目錄,使用命令

Python setup.py install 安裝requests

安裝方式三:(推薦簡單)

使用pycharm工具下載安裝requests

下載路徑:開啟pycharm——File——Settings——Project:專案名——Python Interpreter——點選左上角+號——輸入requests——點選Install Package;

步驟圖解如下:按照步驟1-7操作