Metadata-Version: 2.1
Name: Mopidy-Audioteka
Version: 0.3.0
Summary: Mopidy backend extension for Audioteka
Home-page: https://github.com/jedrus2000/mopidy-audioteka
Author: Andrzej Bargański
Author-email: a.barganski@gmail.com
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia :: Sound/Audio :: Players
License-File: LICENSE
Requires-Dist: setuptools
Requires-Dist: Mopidy (>=3.0)
Requires-Dist: Pykka (>=2.0.1)
Requires-Dist: audtekapi (>=0.3.0)

****************************
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 <https://www.mopidy.com/>`_ extension (non-official) for `Audioteka <https://audioteka.com/>`_ audiobooks service.


Installation
============

Install by running::

    pip install Mopidy-Audioteka

Or, if available, install the Debian/Ubuntu package from `apt.mopidy.com
<http://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 <https://github.com/jedrus2000/mopidy-audioteka>`_
- `Issue tracker <https://github.com/jedrus2000/mopidy-audioteka/issues>`_


Credits
=======

- Original author: `Andrzej Bargański <https://github.com/jedrus2000>`_
- Current maintainer: `Andrzej Bargański <https://github.com/jedrus2000>`_
- `Contributors <https://github.com/jedrus2000/mopidy-audioteka/graphs/contributors>`_


Changelog
=========

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.


