91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python安裝requests模塊的方法

發布時間:2020-08-24 16:08:10 來源:億速云 閱讀:222 作者:小新 欄目:編程語言

小編給大家分享一下python安裝requests模塊的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

requests是python實現的簡單易用的HTTP庫,使用起來比urllib簡潔很多

因為是第三方庫,所以使用前需要cmd安裝

pip install requests

安裝完成后import一下,正常則說明可以開始使用了。

基本用法:

requests.get()用于請求目標網站,類型是一個HTTPresponse類型

import requests

response = requests.get('http://www.baidu.com')
print(response.status_code)  # 打印狀態碼
print(response.url)          # 打印請求url
print(response.headers)      # 打印頭信息
print(response.cookies)      # 打印cookie信息print(response.text)  #以文本形式打印網頁源碼
print(response.content) #以字節流形式打印

運行結果:

狀態碼:200

各種請求方式:

import requests

requests.get('http://httpbin.org/get')
requests.post('http://httpbin.org/post')
requests.put('http://httpbin.org/put')
requests.delete('http://httpbin.org/delete')
requests.head('http://httpbin.org/get')
requests.options('http://httpbin.org/get')

基本的get請求

import requests

response = requests.get('http://httpbin.org/get')print(response.text)

帶參數的GET請求:

第一種直接將參數放在url內

import requests

response = requests.get(http://httpbin.org/get?name=gemey&age=22)print(response.text)

解析json

import requests

response = requests.get('http://httpbin.org/get')
print(response.text)
print(response.json())  #response.json()方法同json.loads(response.text)
print(type(response.json()))

以上是python安裝requests模塊的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

闸北区| 阿拉善左旗| 上蔡县| 兴城市| 云霄县| 石景山区| 祥云县| 贵溪市| 同仁县| 福清市| 嘉义市| 涟水县| 株洲县| 来宾市| 西昌市| 祁连县| 曲周县| 双鸭山市| 平邑县| 洞口县| 曲水县| 安顺市| 剑阁县| 武胜县| 马山县| 安福县| 孝义市| 柳河县| 精河县| 余庆县| 黑山县| 陕西省| 井研县| 白山市| 美姑县| 高青县| 左贡县| 盱眙县| 犍为县| 夏河县| 徐州市|