Streaming video addon for Kodi that uses the Red Bull TV Apple TV XML.
The categories and stream listings in Kodi will look a bit odd as the addon is parsing XML web pages that are designed to be displayed as-is on Apple TV units with custom CSS styling.
This addon is based upon the work by nedge2k.
To run the unit tests (which includes integration tests that will connect to the Red Bull Server for content), navigate to the repository root and run the following:
# bash/zsh
(cd plugin.video.redbulltv && python -B -m unittest discover)
# fish
pushd plugin.video.redbulltv; python -B -m unittest discover; popd
To run pylint to check code style, navigate to the repository root and run the following:
find plugin.video.redbulltv -iname "*.py" | xargs pylint --output-format=colorized --disable=line-too-long,wrong-import-position