Skip to content

Instantly share code, notes, and snippets.

@cspickert
cspickert / GoogleSpreadsheets.py
Created January 20, 2012 23:40
Export a Google Spreadsheet using python.
#!/usr/bin/python
import re, urllib, urllib2
class Spreadsheet(object):
def __init__(self, key):
super(Spreadsheet, self).__init__()
self.key = key
class Client(object):
@DTrejo
DTrejo / run.py
Created November 15, 2010 02:17
reruns the given file whenever it changes. usage: python3 run.py myfile.py
#!/course/cs053/bin/python3
import os, time
import sys
"""
reruns the given file whenever it changes.
usage: python3 run.py myfile.py
"""
def stat(f):