Created
October 28, 2011 07:03
-
-
Save border/1321781 to your computer and use it in GitHub Desktop.
Access Stock Quotes Realtime through Google Finance
This file contains hidden or 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
import urllib2 | |
import json | |
import time | |
# Form: http://digitalpbk.com/stock/google-finance-get-stock-quote-realtime | |
class GoogleFinanceAPI: | |
def __init__(self): | |
self.prefix = "http://finance.google.com/finance/info?client=ig&q=" | |
def get(self,symbol,exchange): | |
url = self.prefix+"%s:%s"%(exchange,symbol) | |
u = urllib2.urlopen(url) | |
content = u.read() | |
obj = json.loads(content[3:]) | |
return obj[0] | |
if __name__ == "__main__": | |
c = GoogleFinanceAPI() | |
while 1: | |
quote = c.get("MSFT","NASDAQ") | |
print quote | |
time.sleep(30) |
amejiarosario
commented
Jul 19, 2016
Unfortunately, this no longer works. Google removed this feature or at least relocated it to a new URL (unknown to me).
It no longer works. But I wonder why Google doesn't want to share the data with people.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment