├── Dockerfile ├── README.md ├── data └── config.yml ├── entrypoint.sh ├── media_remote.py ├── requirements.txt ├── scrobbling.py └── tvscrobbler.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stigger/trakt-for-appletv/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stigger/trakt-for-appletv/HEAD/README.md -------------------------------------------------------------------------------- /data/config.yml: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stigger/trakt-for-appletv/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /media_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stigger/trakt-for-appletv/HEAD/media_remote.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML 2 | trakt.py 3 | lxml 4 | pyatv 5 | -------------------------------------------------------------------------------- /scrobbling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stigger/trakt-for-appletv/HEAD/scrobbling.py -------------------------------------------------------------------------------- /tvscrobbler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stigger/trakt-for-appletv/HEAD/tvscrobbler.py --------------------------------------------------------------------------------