├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── log.conf ├── mpv-trakt-sync.plist ├── mpv-trakt-sync.service ├── mpv.py ├── requirements-win.txt ├── requirements.txt ├── sync_daemon.py ├── trakt_key_holder.pyc ├── trakt_v2_oauth.py ├── win-hidden-launch.vbs └── win-launch.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/config.json -------------------------------------------------------------------------------- /log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/log.conf -------------------------------------------------------------------------------- /mpv-trakt-sync.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/mpv-trakt-sync.plist -------------------------------------------------------------------------------- /mpv-trakt-sync.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/mpv-trakt-sync.service -------------------------------------------------------------------------------- /mpv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/mpv.py -------------------------------------------------------------------------------- /requirements-win.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pywin32 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | guessit 2 | requests 3 | -------------------------------------------------------------------------------- /sync_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/sync_daemon.py -------------------------------------------------------------------------------- /trakt_key_holder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/trakt_key_holder.pyc -------------------------------------------------------------------------------- /trakt_v2_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/trakt_v2_oauth.py -------------------------------------------------------------------------------- /win-hidden-launch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/win-hidden-launch.vbs -------------------------------------------------------------------------------- /win-launch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StareInTheAir/mpv-trakt-sync-daemon/HEAD/win-launch.bat --------------------------------------------------------------------------------