Mopidy extension (non-official) for Audioteka audiobooks service.
Install by running:
pip install Mopidy-Audioteka
Or, if available, install the Debian/Ubuntu package from apt.mopidy.com.
Before starting Mopidy, you must add configuration for Mopidy-Audioteka to your Mopidy configuration file:
[audioteka] enabled = true username = account name at Audioteka password = password for above account name device_id = YOUR_DEVICE_ID
YOUR_DEVICE_ID is your Audioteka device ID. You can generate it:
bash> python Python 3.9.1 >>> import uuid >>> str(uuid.uuid4()) 'ca358b48-8401-4033-8289-9e50045ac83a'
- Original author: Andrzej Bargański
- Current maintainer: Andrzej Bargański
- Contributors
- remove testing artefacts
- refactoring to work with Python >=3.7 and Mopidy 3.x
- adding support for new Audioteka API
- Guarding exceptions: one missing guard
- Guarding exceptions, related to issue #1
- Removed stupid logical bug which forced refreshing book-shelf in all cases.
- Initial release.