Requests

Making a request with python

In this challenge we are asked to keep following a trail of JSON objects until we reach one that is {"value":"end","next":"end"}.

To do that we use the requests library, which sends HTTP requests and receive responses.

Last updated