├── .gitattributes ├── .gitignore ├── README.md ├── assets └── favicon.ico ├── demo_video.mp4 ├── movie_streaming_site ├── __init__.py ├── components │ ├── keybind.py │ ├── loading.py │ ├── moviecard.py │ └── search.py ├── movie_streaming_site.py ├── pages │ ├── player.py │ └── search.py └── state.py ├── requirements.txt └── rxconfig.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | *.py[cod] 3 | .env 4 | .web 5 | __pycache__/ 6 | assets/external/ 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/README.md -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /demo_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/demo_video.mp4 -------------------------------------------------------------------------------- /movie_streaming_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /movie_streaming_site/components/keybind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/movie_streaming_site/components/keybind.py -------------------------------------------------------------------------------- /movie_streaming_site/components/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/movie_streaming_site/components/loading.py -------------------------------------------------------------------------------- /movie_streaming_site/components/moviecard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/movie_streaming_site/components/moviecard.py -------------------------------------------------------------------------------- /movie_streaming_site/components/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/movie_streaming_site/components/search.py -------------------------------------------------------------------------------- /movie_streaming_site/movie_streaming_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/movie_streaming_site/movie_streaming_site.py -------------------------------------------------------------------------------- /movie_streaming_site/pages/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/movie_streaming_site/pages/player.py -------------------------------------------------------------------------------- /movie_streaming_site/pages/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/movie_streaming_site/pages/search.py -------------------------------------------------------------------------------- /movie_streaming_site/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/movie_streaming_site/state.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/requirements.txt -------------------------------------------------------------------------------- /rxconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRA5S/openstream/HEAD/rxconfig.py --------------------------------------------------------------------------------