Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so dont bother with any of their useless mail servers here and just use oauth login instead. Thank the nice Russians for causing that. :)

Paste

Pasted as Python by eGlyph ( 16 years ago )
import urllib
import csv

class YStockQuote(object):
    __fields = ['price', 'change', 'volume', 'avg_daily_volume', 'stock_exchange', 
              'market_cap', 'book_value', 'ebitda', 'dividend_per_share', 
              'dividend_yield', 'earnings_per_share', '52_week_high',      
              '52_week_low', '50day_moving_avg', '200day_moving_avg', 'price_earnings_ratio', 
              'price_earnings_growth_ratio', 'price_sales_ratio', 'price_book_ratio', 'short_ratio']

    def __init__ (self, symbol):
        uri  = 'http://finance.yahoo.com/d/quotes.csv?s=%s&f=%s' % (symbol, 'l1c1va2xj1b4j4dyekjm3m4rr5p5p6s7')
        self.__dict__ = csv.DictReader(urllib.urlopen(uri), fieldnames = self.__fields).next()

 

Revise this Paste

Parent: 17097
Your Name: Code Language: