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

溫馨提示×

溫馨提示×

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

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

怎么在python中安裝requests庫

發布時間:2020-07-16 15:27:17 來源:億速云 閱讀:276 作者:Leah 欄目:編程語言

本篇文章為大家展示了怎么在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

政和县| 桐梓县| 邵阳县| 玛曲县| 灌阳县| 苍溪县| 玛纳斯县| 准格尔旗| 海盐县| 金溪县| 呼伦贝尔市| 乐清市| 台南县| 科尔| 仙桃市| 东兰县| 调兵山市| 阳城县| 连南| 将乐县| 房产| 濉溪县| 色达县| 偃师市| 平泉县| 博罗县| 新郑市| 从江县| 平安县| 巴里| 革吉县| 民乐县| 德令哈市| 东光县| 行唐县| 湾仔区| 临泽县| 鱼台县| 丰都县| 武城县| 枣强县|