cybtow

Results 7 comments of cybtow

Hi, I solved it specifying manually the headers, here my pices of code: class CachedLimiterSession(CacheMixin, LimiterMixin, Session): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.headers.update({ 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64;...

Yes, I solved it, those are pieces of my code it's not completed, I tried to adapted here, let me copy and paste more, these pieces os code belongs an...

I just ran my script right now and it's not working again. Yesterday, it was doing that. I'll research a bit more if I find a solution.

I've tried some options, only two worked, one without specifying a session, and other (the last one) specifying a custom session. I think it'll be nice that yfinance could be...

@ValueRaider curious to know that session ;)

You're right, rate-limiting is not being taken into account at all, I cehcked with a list of tickers and all of them were taken quickly without restrictions. Checking on the...

Hi, I put several tests, only these two worked for me, one without session and other with custom session. Take into account rate-limiting is not working. import yfinance as yf...