Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Ticker lookups #2364

Merged
merged 3 commits into from
Mar 30, 2025
Merged

Conversation

dhruvan2006
Copy link
Contributor

The Search module seems like it has been heavily nerfed for searching just tickers. It seems more useful now for fetching news.

Changes:

I have therefore added a new class Lookup that provides the functionality as provided on this page
https://finance.yahoo.com/lookup/?s=apple

Example:

To perform the same as the link above:

import yfinance as yf

all = yf.Lookup("apple").all
print(all)

Closes #2359

@R5dan
Copy link
Contributor

R5dan commented Mar 19, 2025

Can you explain the difference between this and:

yf.Search("apple").all

@dhruvan2006
Copy link
Contributor Author

As I said Search got nerfed and only returns a maximum of 5 quote results. Lookup uses a different endpoint dedicated to searching tickers.

@R5dan
Copy link
Contributor

R5dan commented Mar 21, 2025

Ah ok

@ValueRaider
Copy link
Collaborator

ValueRaider commented Mar 22, 2025

Suggestion: auto-parse the JSON into a dataframe e.g.:

pd.DataFrame(lookup.all).set_index('symbol')

@ymyke

@ymyke
Copy link
Contributor

ymyke commented Mar 23, 2025

@ValueRaider

I don't need that and the current list of dicts return type seems to be in line with what search does:

import yfinance as yf
print(yf.Lookup("apple").get_stock()[0])
print(yf.Search("apple").quotes[0])

yields:

{'exchange': 'NMS', 'industryLink': 'https://finance.yahoo.com/sector/technology', 'industryName': 'Technology', 'quoteType': 'equity', 'rank': 33269, 'regularMarketChange': 4.1699981689453125, 'regularMarketPercentChange': 1.947687029838562, 'regularMarketPrice': 218.27000427246094, 'shortName': 'Apple Inc.', 'symbol': 'AAPL'}
{'exchange': 'NMS', 'shortname': 'Apple Inc.', 'quoteType': 'EQUITY', 'symbol': 'AAPL', 'index': 'quotes', 'score': 33269.0, 'typeDisp': 'Equity', 'longname': 'Apple Inc.', 'exchDisp': 'NASDAQ', 'sector': 'Technology', 'sectorDisp': 'Technology', 'industry': 'Consumer Electronics', 'industryDisp': 'Consumer Electronics', 'dispSecIndFlag': True, 'isYahooFinance': True}

But I think the author of the PR, @dhruvan2006, should mainly chime in here.

@dhruvan2006
Copy link
Contributor Author

Suggestion: auto-parse the JSON into a dataframe

Changed to return dataframe. I think having it so aligns well with the rest of the package.

@ValueRaider ValueRaider merged commit b1bb751 into ranaroussi:dev Mar 30, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants