├── .gitignore ├── Readme.md ├── config.py.example ├── requirements.txt ├── scanner.py ├── screenshot.png └── watch.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dufferzafar/what-to-watch/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dufferzafar/what-to-watch/HEAD/Readme.md -------------------------------------------------------------------------------- /config.py.example: -------------------------------------------------------------------------------- 1 | # The paths to search for movies 2 | PATHS = [] 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dufferzafar/what-to-watch/HEAD/requirements.txt -------------------------------------------------------------------------------- /scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dufferzafar/what-to-watch/HEAD/scanner.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dufferzafar/what-to-watch/HEAD/screenshot.png -------------------------------------------------------------------------------- /watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dufferzafar/what-to-watch/HEAD/watch.py --------------------------------------------------------------------------------