This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Christian Erichsen
almost 9 years

Connection error with the requests module

I keep getting error that says: Opps, try again. did you create a new variable named kittens? And in the compiler window it says:

Traceback (most recent call last): File “python”, line 4, in <module> ConnectionError: [Errno -2] Name or service not known

This is my code:

import requests
#Make a GET request here and assign the result to kittens:
kittens=requests.get("http://placekittens.com/")
print kittens.text[559:1000]

Answer 5577172ae39efe177a0000a5

0 votes

Permalink

It should be placekitten.com rather than placekittens.com. Just remove the s.

points
Submitted by Robert
almost 9 years