[Python] Download files using URL

Jua KIM·2021년 11월 29일
0
import requests

download_http = "{url: http}"
response = requests.get(download_http)

file = open("test.png", "wb")
file.write(response.content)
file.close()
profile
AI/ML engineer

0개의 댓글