NoMore201 / googleplay-api

Google Play Unofficial Python API
Other
410 stars 208 forks source link

list: offset doesn't work #24

Open heqzha opened 6 years ago

heqzha commented 6 years ago

Hi,

I'm trying to list all top free apps in GAME category by changing offset in a loop. But it doesn't work at all. Whatever the offset is, it always returns apps from the beginning. Ex. offset=None appList = server.list(cat, catList[0], nb_results='10') Ouput list?c=3&cat=GAME&ctr=apps_topselling_free&n=10 jp.colopl.dpuzzle com.square_enix.android_googleplay.DQRivals com.gamecaff.hero com.bandainamcoent.ninjaborutage_app jp.co.bandainamcoonline.grasma com.tiles.piano.animemusic com.linecorp.LGTMTM com.YoStarJP.AzurLane com.nintendo.zara com.gamestart.fill

offset='5' appList = server.list(cat, catList[0], nb_results='10', offset='5') Output list?c=3&cat=GAME&ctr=apps_topselling_free&n=10&o=5 jp.colopl.dpuzzle com.square_enix.android_googleplay.DQRivals com.gamecaff.hero com.bandainamcoent.ninjaborutage_app jp.co.bandainamcoonline.grasma com.tiles.piano.animemusic com.linecorp.LGTMTM com.YoStarJP.AzurLane com.nintendo.zara com.gamestart.fill

P-Sc commented 6 years ago

See my comment for a fix