You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently you can only Infoboxer.wp.category('Argentina') and receive ALL the pages, despite of their count.
Better solution would be something like this:
wiki=Infoboxer.wpcat=wiki.category('Argentina')# => proxy objectcat.count# => count extraction in one (query=list) requestcat.to_a# all objects extractioncat.first(5)# only 5 objects extraction in one request with limit=5wiki.category('Argentina',limit: 20)# => all further requests would be with limit 20, not default 50wiki.category('Argentina').limit(20).offset(15)# and many of such things
The text was updated successfully, but these errors were encountered:
Currently you can only
Infoboxer.wp.category('Argentina')
and receive ALL the pages, despite of their count.Better solution would be something like this:
The text was updated successfully, but these errors were encountered: