Results 219 comments of mkb79

If you don’t use the standalone binary from release page you can change [these](https://github.com/mkb79/Audible/blob/f213edfec5cc4a871b1d65719d38a28df33e1f56/src/audible/register.py#L92) line from `for cookie in tokens["website_cookies"]:` to `for cookie in tokens.get("website_cookies", {}):` After that reinstall the...

Okay. Then delete these two lines please: ```python for cookie in tokens["website_cookies"]: website_cookies[cookie["Name"]] = cookie["Value"].replace(r'"', r'') ``` This should resolve your issue.

Theoretical it is possible to register an unlimited number of devices. But your last error says, that your login was not successfully and the url you past in does not...

Okay, I know what happens. Please change ```python website_cookies = dict() for cookie in tokens["website_cookies"]: website_cookies[cookie["Name"]] = cookie["Value"].replace(r'"', r'') ``` to ```python website_cookies = None ``` This should definitely solve...

That sounds great. You can view and remove devices on the Amazon website under settings>devices or so. I think this should be the same for pre-Amazon accounts. If not, you...

Sorry for the delay. But I'm on annual vacation right now! The virtual devices cannot be distinguished from the real devices. At least not if you use my package. To...

When it comes to numbering, he actually always takes the next free number. If deregistering a device, it free up this number. Have you [read this](https://help.audible.com/s/article/how-can-i-deactivate-devices-that-are-using-the-audible-app?language=en_US)? Sorry if I don’t...

@johnlescault Which `timeout` you set when downloading the file?

90000 means 25 hours. That’s the reason why the download stucks and don’t raise a Timeout. You can try to set a lower timeout or remove it and set a...