An open API service indexing awesome lists of open source software.

https://github.com/jedrus2000/mopidy-audioteka

Mopidy backend extension for Audioteka
https://github.com/jedrus2000/mopidy-audioteka

audioteka mopidy mopidy-backend

Last synced: 5 months ago
JSON representation

Mopidy backend extension for Audioteka

Awesome Lists containing this project

README

          

****************************
Mopidy-Audioteka
****************************

.. image:: https://img.shields.io/pypi/v/Mopidy-Audioteka.svg?style=flat
:target: https://pypi.python.org/pypi/Mopidy-Audioteka/
:alt: Latest PyPI version

.. image:: https://img.shields.io/travis/jedrus2000/mopidy-audioteka/master.svg?style=flat
:target: https://travis-ci.org/jedrus2000/mopidy-audioteka
:alt: Travis CI build status

.. image:: https://img.shields.io/coveralls/jedrus2000/mopidy-audioteka/master.svg?style=flat
:target: https://coveralls.io/r/jedrus2000/mopidy-audioteka
:alt: 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
=================

- `Source code `_
- `Issue tracker `_

Credits
=======

- Original author: `Andrzej Bargański `_
- Current maintainer: `Andrzej Bargański `_
- `Contributors `_

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.