python之檔案下載

小小雨傘發表於2020-09-30

寫入二進位制檔案比如:圖片音樂

with open('1.jpg','wb') as f:
	im = requests.get(imgurl)
	f.write(im)

相關文章