Dhruvan Gnanadhandayuthapani
Dhruvan Gnanadhandayuthapani
Fix the default value for the multi_level_index parameter in the download function. Was changed from True to False to reflect expected behavior. Resolves #2101
Running `python -m unittest discover -s tests` from #1084 causes 5 failures and 1 error. ====================================================================== ERROR: test_resampling (test_price_repair.TestPriceRepairAssumptions.test_resampling) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/dhruvan/yfinance/tests/test_price_repair.py", line 49, in...
New `Auth` class that allows for login functionality by settings cookies. ```python import yfinance as yf auth = yf.Auth() auth.set_login_cookies(os.getenv("COOKIE_T"), os.getenv("COOKIE_Y")) auth.check_login() auth.user ``` Inspired by #2220