Get your own Python server Result Size: 625 x 565
x
 
import requests
url = 'https://w3schools.com/images/pulpit.jpg'
#allow the response to be streamed by setting the 'stream' parameter to True:
x = requests.get(url, stream=True)
print(x.status_code)
200