Skip to content

Instantly share code, notes, and snippets.

View bxjx's full-sized avatar

Bridger Rossiter bxjx

  • Newcastle, Australia
View GitHub Profile
@nickjevershed
nickjevershed / Convert Google spreadsheet to JSON and save to S3
Created August 21, 2013 23:10
Converts Google spreadsheet to JSON and saves to an S3 bucket. Spreadsheet needs to be public or accessible with link.
#!/usr/bin/env python
import urllib2
import csv
import json
import boto
#Replace Google spreadsheet URL with your spreadsheet URL
url = "GOOGLE SPREADSHEET URL" + "&output=csv"