Skip to content

Instantly share code, notes, and snippets.

@kojoidrissa
Last active October 19, 2015 20:55
Show Gist options
  • Save kojoidrissa/e72cc1a71975673516a3 to your computer and use it in GitHub Desktop.
Save kojoidrissa/e72cc1a71975673516a3 to your computer and use it in GitHub Desktop.
Placekitten by Cauley
from urllib2 import urlopen
# Open http://placekitten.com/ for reading on line 4!
kittens = urlopen('http://placekitten.com/')
response = kittens.read()
body = response[559:1000]
# Add your 'print' statement here!
print body
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment