class IntradayQuotes(object): """ API for retreiving intraday quotes from the stock database """ def __init__(self): self.db = StockDBManager() def get_quote(self, ticker, date): """ Return a quote for the given stock on the given date """ return self.db.get_quotes(ticker, date)[0] def get_quotes(self, ticker, start_date, end_date): """ Return a list of quotes for the given stoc from start_date to end-date """ return self.db.get_quotes(ticker, start_date, end_date)
def __init__(self): self.db = StockDBManager()