diff --git a/ch01/archive.py b/ch01/archive.py index 828349e..513229c 100644 --- a/ch01/archive.py +++ b/ch01/archive.py @@ -3,7 +3,7 @@ from urllib.request import urlopen print("Let's find an old website.") -site = input("Type a website URL: ") +site = input("Type a website URL: (example lolcats.com) ") era = input("Type a year, month, and day, like 20150613: ") url = "http://archive.org/wayback/available?url=%s×tamp=%s" % (site, era) response = urlopen(url)