Skip to content

Instantly share code, notes, and snippets.

@nlashinsky
Created August 4, 2014 19:33
Show Gist options
  • Select an option

  • Save nlashinsky/bbd975df736322c61f01 to your computer and use it in GitHub Desktop.

Select an option

Save nlashinsky/bbd975df736322c61f01 to your computer and use it in GitHub Desktop.
JSON challenge
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