Skip to content

Instantly share code, notes, and snippets.

@mhubig
Created November 4, 2013 10:44
Show Gist options
  • Save mhubig/7300900 to your computer and use it in GitHub Desktop.
Save mhubig/7300900 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import json
import requests
url = "http://letsrevolutionizetesting.com/challenge"
headers = {'accept': 'application/json'}
while True:
r = requests.get(url, headers=headers)
data = r.json()
if not data.has_key('follow'):
print data
break
url = data['follow']
print url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment