# Quant-Finance-With-Python-Code **Repository Path**: theshyxin/Quant-Finance-With-Python-Code ## Basic Information - **Project Name**: Quant-Finance-With-Python-Code - **Description**: Repo for code examples in Quantitative Finance with Python by Chris Kelliher - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-29 - **Last Updated**: 2026-01-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Quant-Finance-With-Python-Code Repo for code examples in Quantitative Finance with Python by Chris Kelliher **Note: This book is the first edition of _Quantitative Finance with Case Studies in Python_. For readers of the second edition, please go to [this repo](https://github.com/lingyixu/Quantitative-Finance-with-Case-Studies-in-Python).** # ### [11/13/2023] Comment on Yahoo Finance data retrieval #### Issue: Function `data.get_data_yahoo()` in [`panadas_datareader`](https://github.com/pydata/pandas-datareader) no longer works due to Yahoo Finance codebase migration. See detailed discussions [here](https://github.com/pydata/pandas-datareader/issues/952). #### Solution: Use [`yfinance`](https://github.com/ranaroussi/yfinance). Example: ```python import yfinance as yf df = yf.download(['XLK', 'SPY'], start='2023-01-01', end='2023-08-31', auto_adjust=False)['Adj Close'] ```