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
- Host: GitHub
- URL: https://github.com/jedrus2000/mopidy-audioteka
- Owner: jedrus2000
- License: apache-2.0
- Created: 2019-01-17T22:30:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-06T16:34:17.000Z (over 4 years ago)
- Last Synced: 2025-09-28T15:10:42.495Z (10 months ago)
- Topics: audioteka, mopidy, mopidy-backend
- Language: Python
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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.