python請求頭如何自定義?
1、說明
要自定義請求頭,可以使用headers參數將HTTP頭部組成的字典傳遞給get()。
2、實例
可以通過Accept中指定文本匹配媒體類型來更改以前的搜索請求,以在結果中突出顯示匹配的搜索字詞:
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告訴服務器你的應用程序可以處理哪些內容類型。由于希望突出顯示匹配的搜索詞,所以使用的是application/vnd.github.v3.text-match+json,這是一個專有的GitHub的Accept標頭,其內容為特殊的JSON格式。
以上就是python請求頭自定義的方法,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。