


You can find the documentation here: FAQs

You can find an example use case in the following Google Colab notebook: Documentation > profile = yd.AssetProfile('AAPL', locale=Locale.AU) Using the Asset Profile example previously: > import yahoofinance as yf For example, from Australia, we can query from the Australian Yahoo Finance website to get marginally faster query times. We can add in a locale to choose a specific region to query from. Next steps include exporting other to a Pandas Dataframe, which would be the main reason why this project exists! Optional Usage You can now find the profile information in a CSV file called AAPL-profile.csv. If we are looking to export Apple's Asset Profile we can do the following: > import yahoofinance as yf To export the Profile data to CSV, it is simple! Note: There are a few packages with a similar name, make sure you type the right package name - yahoofinance Usage You can install the library using: pip install yahoofinance Note: There is no guarantee that the data provided in this library is correct. Warning: This package is undergoing development and implementation and interfaces may change drastically without notice. The data is retrieved directly from the website with no data changes. Python module to get data readily available from Yahoo Finance.
