Skip to content

jedrus2000/mopidy-audioteka

Repository files navigation

Mopidy-Audioteka

Latest PyPI version

Travis CI build status

Test coverage

Mopidy extension (non-official) for Audioteka audiobooks service.

Installation

Install by running:

pip install Mopidy-Audioteka

Or, if available, install the Debian/Ubuntu package from apt.mopidy.com.

Configuration

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'

Project resources

Credits

Changelog

v0.3.1 (2022-02-06)

  • remove testing artefacts

v0.3.0 (2022-02-06)

  • refactoring to work with Python >=3.7 and Mopidy 3.x
  • adding support for new Audioteka API

v0.1.5 (2019-02-02)

  • Guarding exceptions: one missing guard

v0.1.4 (2019-02-02)

  • Guarding exceptions, related to issue #1

v0.1.3 (2019-01-18)

  • Removed stupid logical bug which forced refreshing book-shelf in all cases.

v0.1.2 (2019-01-17)

  • Initial release.