安裝一個requests框架:用于發(fā)起網(wǎng)絡(luò)請求到服務(wù)器端,如get、post請求。
安裝requests
pipinstallrequests
發(fā)起get請求
#不包含任何參數(shù)的請求
r=requests.get(url_get)
發(fā)起post請求
#不包含任何參數(shù)的請求
r=requests.post(url_post)
其實python很簡單,你查下requests的使用方法,網(wǎng)上非常多和詳細,如果是0基礎(chǔ)的新手,建議你上bilibili學(xué)習(xí)