Skip to content

Instantly share code, notes, and snippets.

@umurkontaci
Created March 19, 2015 15:33
Show Gist options
  • Save umurkontaci/8179528fdbd96cf869aa to your computer and use it in GitHub Desktop.
Save umurkontaci/8179528fdbd96cf869aa to your computer and use it in GitHub Desktop.
rainforest
import requests
def follow():
u = 'http://letsrevolutionizetesting.com/challenge?id=831657532'
while u:
print u
res = r.get(u, headers={'Accept': 'application/json'})
u = res.json().get('follow', None)
print res.json()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment