Yahoo-finance Module Doesn't Work Anymore?
I've been using the yahoo finance module in python. I put the project down for the last couple months and just started it up again. Unfortunately it doesn't seem that there is anyt
Solution 1:
From Ed0906's answer here: https://stackoverflow.com/a/44050039/5766416
Yahoo discontinued their API for desktop connections. You can still connect to it via your phone. So one way you can circumvent this is by setting the headers of your GET request to some mobile browser.
OR
Follow Ed's method by getting and setting the crumb in your requests. I used it, and verified it works.
Post a Comment for "Yahoo-finance Module Doesn't Work Anymore?"