python請(qǐng)求頭如何自定義?
1、說明
要自定義請(qǐng)求頭,可以使用headers參數(shù)將HTTP頭部組成的字典傳遞給get()。
2、實(shí)例
可以通過Accept中指定文本匹配媒體類型來更改以前的搜索請(qǐng)求,以在結(jié)果中突出顯示匹配的搜索字詞:
importrequests
response=requests.get(
'https://api.github.com/search/repositories',
params={'q':'requests+language:python'},
headers={'Accept':'application/vnd.github.v3.text-match+json'},
)
#Viewthenewtext-matchesarraywhichprovidesinformation
#aboutyoursearchtermwithintheresults
json_response=response.json()
repository=json_response['items'][0]
print(f'Textmatches:{repository["text_matches"]}')
Accept告訴服務(wù)器你的應(yīng)用程序可以處理哪些內(nèi)容類型。由于希望突出顯示匹配的搜索詞,所以使用的是application/vnd.github.v3.text-match+json,這是一個(gè)專有的GitHub的Accept標(biāo)頭,其內(nèi)容為特殊的JSON格式。
以上就是python請(qǐng)求頭自定義的方法,希望對(duì)大家有所幫助。更多Python學(xué)習(xí)教程請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。