Mário Almeida
Mário Almeida
I get this when trying to download specific apps only, for example: ``` download = api.download('com.opt.toapp', expansion_files=True) # Fails with DF-DFERH-01 download = api.download('com.smarty.voomvoom', expansion_files=True) # Succeeds ``` Using the...
I am using the following workaround for the offset issue : ```python # Add this to googleplay.py def cluster_list(self, cat, ctr, next_cluster=None): path = LIST_URL + "?c=3&cat={}".format(requests.utils.quote(cat)) addons = "&ctr={}".format(requests.utils.quote(ctr))...
"Your device is not compatible with this item." Your list is probably empty?
Well other than adding a check to see if the returned list is empty, try changing your device UA in `googleplay.py` to something more recent. E.g.: ``` headers = {...
The following lines allow passing the prefix through the options: ``` defp request(client, action, input, options) do prefix = Keyword.get(options, :endpoint_prefix, "mturk-requester") options = Keyword.delete(options, :endpoint_prefix) client = %{client |...
I implemented my own LMDB dataset and had the same issue when using LMDB with num_workers > 0 and torch multiprocessing set to spawn. It is very similar to this...
I have the same issue with v1.0.6 on chrome, any solution?