yahooquery icon indicating copy to clipboard operation
yahooquery copied to clipboard

Unable to Retrieve All Screener Results When Count Exceeds 250

Open nichsedge opened this issue 1 year ago • 0 comments

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

  1. Web Results
    image

  2. Error when count > 250
    image

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.

nichsedge avatar Aug 27 '24 05:08 nichsedge