Had any body tried Yahoo Finanace API using Python or Pylons...!?
I tried using Java and C#.NET, but i dont know how to get it.
Will any body tell me the procedure....!
Hi all,
Had any body tried Yahoo Finanace API using Python or Pylons...!?
I tried using Java and C#.NET, but i dont know how to get it.
Hi mopuru,
You could use the Yahoo! Finance YQL tables! For instance, you could query the Quotes YQL table using Python-YQL, that is a Python API to query YQL tables.
Cheers,
gc
select * from yahoo.finance.options where symbol in ("F")>>> import yql
>>> y = yql.Public()
>>> result = y.execute( 'select * from yahoo.finance.options where symbol in ("F")')Anyone know what would cause this?
>>> import yql
>>> y = yql.Public()
>>> result = y.execute("select * from yahoo.finance.quotes where symbol in ('YHOO','AAPL','GOOG','MSFT')")>>> import yql
>>> y = yql.Public()
>>> result = y.execute('use "http://www.datatables.org/yahoo/finance/yahoo.finance.quotes.xml" as yahoo.finance.quotes; select * from yahoo.finance.quotes where symbol in ("YHOO")')