We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44bc93d commit a078adaCopy full SHA for a078ada
Chapter13/urllib_examples.py
@@ -1,7 +1,7 @@
1
from urllib.request import urlopen
2
3
# Basic GET request and response examination
4
-response = urlopen('http://packtpub.com')
+response = urlopen('http://python.org')
5
print(response.getheader('Content-Type'))
6
print(response.getheader('Server'))
7
print(response.status)
0 commit comments