I've been looking around for a stable function to fetch stock data in my program. Yahoo_finance is broken completely now, even the current day data retrievers return a None type. Previously I've had success with a stock downloader written by Andrew Galeazzi, but just a couple days ago the downloader stopped working, and now I am met with:
Traceback (most recent call last): File "C:/Users/somename/PycharmProjects/StockGUI/test1.py", line 57, in module> print (get_crumble_and_cookie('KO')) File "C:/Users/somename/PycharmProjects/StockGUI/test1.py", line 26, in get_crumble_and_cookie cookie_str = match.group(1) AttributeError: 'NoneType' object has no attribute 'group'
Are there any historical stock data retrievers out there that are currently working?