How to get tickers on yahoo finance

225 Views Asked by At

Hi I'm looking for an efficient way to get yahoo finance tickers for a data analysis project with python. I didn't found a complete list to download automatically instead of copying one to one.

I tried using the yahoo query library but it doesn't seem to have a complete list and an easy way of downloading a lot of tickers (the number of tickers that you want to download has to be less than 250).

This is the method I'm using:

s = yq.Screener()             
data = s.get_screeners('all_cryptocurrencies_us', 250)
dicts = data['all_cryptocurrencies_us']['quotes']
symbols = [d['symbol'] for d in dicts]
0

There are 0 best solutions below