Created
December 11, 2018 14:56
-
-
Save jonathanoheix/c48b59504da127322629fa8cc1617716 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| result = requests.get("http://books.toscrape.com/catalogue/page-50.html") | |
| print("status code for page 50: " + str(result.status_code)) | |
| result = requests.get("http://books.toscrape.com/catalogue/page-51.html") | |
| print("status code for page 51: " + str(result.status_code)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment