├── add_or_remove_from_startup.vbs ├── launch headless.vbs ├── main.py ├── readme.md ├── server.py ├── settings.py ├── startup.py ├── static ├── script.js └── style.css ├── stats.json └── templates └── index.html /add_or_remove_from_startup.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/add_or_remove_from_startup.vbs -------------------------------------------------------------------------------- /launch headless.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/launch headless.vbs -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/main.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/readme.md -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/server.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- 1 | youtube_api_key = "ENTER YOUTUBE API KEY" -------------------------------------------------------------------------------- /startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/startup.py -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/static/style.css -------------------------------------------------------------------------------- /stats.json: -------------------------------------------------------------------------------- 1 | {"time_watched_all_time": 0} -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingobeans/Auto-OWL-Watcher/HEAD/templates/index.html --------------------------------------------------------------------------------