Skip to content

Instantly share code, notes, and snippets.

@theJohnnyBrown
Created May 1, 2014 00:02
Show Gist options
  • Select an option

  • Save theJohnnyBrown/931d6c9de984a5cc1a81 to your computer and use it in GitHub Desktop.

Select an option

Save theJohnnyBrown/931d6c9de984a5cc1a81 to your computer and use it in GitHub Desktop.
Rainforest QA hoop jumping
import json, requests
url = 'http://letsrevolutionizetesting.com/challenge'
while url:
res = json.loads(requests.get(url, headers={"Accept": 'application/json'}).content)
print res
url = res.get('follow')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment