Created
November 4, 2013 10:44
-
-
Save mhubig/7300900 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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