cuemacro / findatapy

Python library to download market data via Bloomberg, Eikon, Quandl, Yahoo etc.
Apache License 2.0
1.65k stars 195 forks source link

How to get basic_info or quote (non-timeseries data) #46

Closed joeld1 closed 10 months ago

joeld1 commented 10 months ago

I was wondering if this library can get basic info such as this example

from googlefinance import getQuotes
import json
print(json.dumps(getQuotes('AAPL'), indent=2))

or

import yfinance as yf

msft = yf.Ticker("MSFT")

# get all stock info
msft.info