ValueRaider

Results 898 comments of ValueRaider

Ideally documentation answers that, but it might need improvement: https://github.com/ranaroussi/yfinance/wiki

Yes https://github.com/ranaroussi/yfinance/issues?q=is%3Aissue+is%3Aopen+label%3A%22Yahoo+spam%22

No idea. I respect Yahoo's limit, with caching and self-rate-limiting (`requests_cache` and `requests_ratelimiter`)

proxy is broken currently, a fix is proposed just requires someone to test and confirm. It's in branch `hotfix/proxy`, #1080 explains how to test. Report verdict in #1371

As you use a proxy, I have a question (it's very relevant to yours). First, `session` recap - pass one into `Ticker` constructor and then all methods will use the...

> I think the session doesn't work properly The `requests_cache` session works perfectly well, does what it says - cache requests. No mention of rate-limiting, for that you need a...

`requests` does not rotate proxies, you have to do this yourself manually. Probably why you are triggering rate-limiting. You can create a simple `requests` wrapper class in 5-10 minutes that...

Never mind your rate-limiting, let's return to this question: > it seems to work, however how can I use proxy to query the following? ``` ticker.income_stmt ticker.quarterly_income_stmt ``` If you...

> I don't see a way to pass the session to the download call. That should be fixed, please create a new Issue.