本篇文章為大家展示了怎么在python中安裝requests庫(kù),代碼簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
站在用戶的角度思考問題,與客戶深入溝通,找到新蔡網(wǎng)站設(shè)計(jì)與新蔡網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊(cè)、網(wǎng)頁空間、企業(yè)郵箱。業(yè)務(wù)覆蓋新蔡地區(qū)。requests是python實(shí)現(xiàn)的簡(jiǎn)單易用的HTTP庫(kù),使用起來比urllib簡(jiǎn)潔很多
因?yàn)槭堑谌綆?kù),所以使用前需要cmd安裝
pip install requests
安裝完成后import一下,正常則說明可以開始使用了。
基本用法:
requests.get()用于請(qǐng)求目標(biāo)網(wǎng)站,類型是一個(gè)HTTPresponse類型
import requests response = requests.get('http://www.baidu.com') print(response.status_code) # 打印狀態(tài)碼 print(response.url) # 打印請(qǐng)求url print(response.headers) # 打印頭信息 print(response.cookies) # 打印cookie信息print(response.text) #以文本形式打印網(wǎng)頁源碼 print(response.content) #以字節(jié)流形式打印
運(yùn)行結(jié)果:
狀態(tài)碼:200
各種請(qǐng)求方式:
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請(qǐng)求
import requests response = requests.get('http://httpbin.org/get')print(response.text)
帶參數(shù)的GET請(qǐng)求:
第一種直接將參數(shù)放在url內(nèi)
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()))
上述內(nèi)容就是怎么在python中安裝requests庫(kù),你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。