Skip to content

Instantly share code, notes, and snippets.

@sidharthkuruvila
Created July 19, 2012 07:12
Show Gist options
  • Select an option

  • Save sidharthkuruvila/3141271 to your computer and use it in GitHub Desktop.

Select an option

Save sidharthkuruvila/3141271 to your computer and use it in GitHub Desktop.
Fetch Proposals
import urllib
import json
def fetchProposals():
proposals = urllib.urlopen("http://funnel.hasgeek.com/5el/json")
return [e for e in json.loads(proposals.read()).get('proposals')
if e['confirmed'] == True]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment