Skip to content

Instantly share code, notes, and snippets.

View nlashinsky's full-sized avatar

Nick Lashinsky nlashinsky

  • San Francisco, CA
View GitHub Profile
@nlashinsky
nlashinsky / clever_app_installs.ipynb
Last active August 29, 2015 14:15
District App Installs initial python manipulation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nlashinsky
nlashinsky / challenge.py
Created August 4, 2014 19:33
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')