This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Lunch Orders | |
# | |
# Commands: | |
# which menu? / menu? - answer week's menu. | |
# order lunch / lunch - answer week's menu and the link for orders. | |
# orders sent? - answer if the lunch orders were already sent. | |
# | |
# STARRED | |
mail = require("mailer") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
#!/usr/bin/python | |
import re, urllib, urllib2, json | |
class Spreadsheet(object): | |
def __init__(self, key): | |
super(Spreadsheet, self).__init__() | |
self.key = key |