Skip to content

Instantly share code, notes, and snippets.

View david-pettifor-nd's full-sized avatar

David Pettifor david-pettifor-nd

  • University of Notre Dame
  • Notre Dame, IN
View GitHub Profile
@david-pettifor-nd
david-pettifor-nd / Append CSV to Sheet.py
Last active October 24, 2018 22:09
Google Drive/Sheets API
# open the CSV file
csv_file = open(CSV_LOCATION, 'r')
csv_reader = csv.reader(csv_file)
values = []
for row in csv_reader:
values.append(row)
body = {
'values': values