-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Feature: Ticker lookups #2364
Conversation
299c3da
to
51817b3
Compare
Can you explain the difference between this and: yf.Search("apple").all |
As I said |
Ah ok |
Suggestion: auto-parse the JSON into a dataframe e.g.:
|
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:
But I think the author of the PR, @dhruvan2006, should mainly chime in here. |
51817b3
to
8908724
Compare
Changed to return dataframe. I think having it so aligns well with the rest of the package. |
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 pagehttps://finance.yahoo.com/lookup/?s=apple
Example:
To perform the same as the link above:
Closes #2359