설명 없음

Colin Powell 2db63ad49c Bump version to 0.2.1 2 년 전
mopidy_webhooks a140140322 Fix un-interpolated token 2 년 전
tests bbd1f5b5b7 Initial commit 2 년 전
.gitignore bbd1f5b5b7 Initial commit 2 년 전
LICENSE bbd1f5b5b7 Initial commit 2 년 전
MANIFEST.in bbd1f5b5b7 Initial commit 2 년 전
README.rst bbd1f5b5b7 Initial commit 2 년 전
pyproject.toml bbd1f5b5b7 Initial commit 2 년 전
setup.cfg 2db63ad49c Bump version to 0.2.1 2 년 전
setup.py bbd1f5b5b7 Initial commit 2 년 전
tox.ini bbd1f5b5b7 Initial commit 2 년 전

README.rst

****************
Mopidy-Webhooks
****************

.. image:: https://img.shields.io/pypi/v/Mopidy-Webhooks
:target: https://pypi.org/project/Mopidy-Webhooks/
:alt: Latest PyPI version

`Mopidy `_ extension for sending mopidy play status to
arbitrary URL endpoints

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

Install by running::

sudo python3 -m pip install Mopidy-Webhooks


Configuration
=============

To enable this extension, make sure to add the following variables to your
Mopidy configuration file. Note that multiple URLs can be sent to by separating
them with a comma. Tokens match the listing of urls::

[webhooks]
enabled = true
urls = https://example.com/api/receiver/,http://127.0.0.1:8000/webhook/
tokens = ,2349080989234089

The following configuration values are available:

- ``webhooks/enabled``: If the webhooks extension should be enabled or not.
Defaults to disabled.
- ``webhooks/urls``: Comma-separated list of endpoints to send play data to
- ``webhooks/tokens``: Comma-separated list of tokens to send in the
Authorization header for each URL


Project resources
=================

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


Credits
=======

- Author: `Colin Powell `__