Ricardo Mendes
Ricardo Mendes
> This has always worked for me: > > ```python > class Color(Enum): > RED = auto() > GREEN = auto() > BLUE = auto() > > @dataclass > class...
In my case, getting a new `gsf_id` and `auth_sub_token` was enough. That is, perform a new login with the email and password.
You should check the [README.md](https://github.com/NoMore201/googleplay-api/blob/master/README.md). The first login you perform you use the email and password like so: ``` api = GooglePlayAPI(locale="en_US", timezone="UTC", device_codename="hero2lte") api.login(email=mail, password=passwd) ``` After performing this...
Sorry for the delay. Here's the output (using the DATING group): [test_output.txt](https://github.com/NoMore201/googleplay-api/files/4114137/test_output.txt) It does seem like fewer results are returned and the next page URL has offset of 9 instead...
The line of code `appList = server.list("BOOKS_AND_REFERENCE", "apps_topselling_free",100)` should work fine. You can list up to 100 apps for each `list()` request. However, in your code you are requesting 200...
I think you misunderstood what I said. Just change `appList = server.list(cat, catList[0],200,150)` to `appList = server.list(cat, catList[0],100,150)` in your code and you should be fine. > the probleme exactly...
I personally couldn't get the proxy to work (maybe I did something wrong). What I did to change the country was to use a vpn.
I have the same problem with unsloth/Qwen2.5-0.5B-Instruct-bnb-4bit when using `past_key_values`. As @spisupat mentioned, using AutoModelForCasualLM works, but FastLanguageModel doesn't .
Had the same issue. A temporary workaround is to change line 87 of `bin/docker-compose` to `export IMAGE="$image_name"` The problem is that this script appends the contents of `config/version` to the...