Get your
own Python
server
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
import requests url = 'https://www.w3schools.com/images/pulpit.jpg' #allow the response to be streamed by setting the 'stream' parameter to True: x = requests.head(url, stream=True) print(x.status_code)
200