Skip to content

Instantly share code, notes, and snippets.

@bmcbride
Created June 26, 2014 15:20
Show Gist options
  • Save bmcbride/2c83ca78eaa3185bcac6 to your computer and use it in GitHub Desktop.
Save bmcbride/2c83ca78eaa3185bcac6 to your computer and use it in GitHub Desktop.
Python script for fetching a Fulcrum data share and saving it locally.
import urllib2
url = 'https://web.fulcrumapp.com/shares/b711f907a8d42665.csv'
u = urllib2.urlopen(url)
localFile = open('fulcrum_data.csv', 'w')
localFile.write(u.read())
localFile.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment