yahooquery
yahooquery copied to clipboard
Unable to Retrieve All Screener Results When Count Exceeds 250
Describe the Bug
I am unable to retrieve all screener results using the YahooQuery library. Specifically, when attempting to increase the count parameter beyond 250, I receive an error stating "size is too large." However, the screener indicates that there are 10,000 results available.
To Reproduce
Steps to reproduce the behavior:
Here's the code I used:
from yahooquery import Screener
s = Screener()
data = s.get_screeners('all_cryptocurrencies_us', count=250)
Expected Behavior
I expected to retrieve all available results (up to 10,000) by adjusting the count parameter.
Screenshots
-
Web Results
-
Error when count > 250
Additional Context
Is there a workaround or another method to retrieve all 10,000 results, or is this a limitation? Any guidance would be appreciated.