├── .gitignore ├── PlexDownloader.bat ├── README.md ├── lib.py ├── movies.txt ├── music.txt ├── myplex.py ├── pictures.txt ├── plexdl.py ├── scrape.py ├── static ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.js ├── bootstrap.min.css ├── bootstrap.min.js ├── customize.min.js ├── docs.min.js ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff ├── ie-emulation-modes-warning.js ├── ie10-viewport-bug-workaround.js ├── ie8-responsive-file-warning.js ├── raw-files.min.js └── theme.css ├── templates └── index.html ├── tvshows.txt ├── user.ini ├── web ├── __init__.py ├── application.py ├── browser.py ├── contrib │ ├── __init__.py │ └── template.py ├── db.py ├── debugerror.py ├── form.py ├── http.py ├── httpserver.py ├── net.py ├── python23.py ├── session.py ├── template.py ├── test.py ├── utils.py ├── webapi.py ├── webopenid.py ├── wsgi.py └── wsgiserver │ ├── LICENSE.txt │ ├── __init__.py │ ├── ssl_builtin.py │ └── ssl_pyopenssl.py └── webui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /PlexDownloader.bat: -------------------------------------------------------------------------------- 1 | python plexdl.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/README.md -------------------------------------------------------------------------------- /lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/lib.py -------------------------------------------------------------------------------- /movies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /music.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/myplex.py -------------------------------------------------------------------------------- /pictures.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plexdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/plexdl.py -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/scrape.py -------------------------------------------------------------------------------- /static/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/bootstrap.min.js -------------------------------------------------------------------------------- /static/customize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/customize.min.js -------------------------------------------------------------------------------- /static/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/docs.min.js -------------------------------------------------------------------------------- /static/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /static/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /static/ie8-responsive-file-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/ie8-responsive-file-warning.js -------------------------------------------------------------------------------- /static/raw-files.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/raw-files.min.js -------------------------------------------------------------------------------- /static/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/static/theme.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/templates/index.html -------------------------------------------------------------------------------- /tvshows.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/user.ini -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/__init__.py -------------------------------------------------------------------------------- /web/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/application.py -------------------------------------------------------------------------------- /web/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/browser.py -------------------------------------------------------------------------------- /web/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/contrib/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/contrib/template.py -------------------------------------------------------------------------------- /web/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/db.py -------------------------------------------------------------------------------- /web/debugerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/debugerror.py -------------------------------------------------------------------------------- /web/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/form.py -------------------------------------------------------------------------------- /web/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/http.py -------------------------------------------------------------------------------- /web/httpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/httpserver.py -------------------------------------------------------------------------------- /web/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/net.py -------------------------------------------------------------------------------- /web/python23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/python23.py -------------------------------------------------------------------------------- /web/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/session.py -------------------------------------------------------------------------------- /web/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/template.py -------------------------------------------------------------------------------- /web/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/test.py -------------------------------------------------------------------------------- /web/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/utils.py -------------------------------------------------------------------------------- /web/webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/webapi.py -------------------------------------------------------------------------------- /web/webopenid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/webopenid.py -------------------------------------------------------------------------------- /web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/wsgi.py -------------------------------------------------------------------------------- /web/wsgiserver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/wsgiserver/LICENSE.txt -------------------------------------------------------------------------------- /web/wsgiserver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/wsgiserver/__init__.py -------------------------------------------------------------------------------- /web/wsgiserver/ssl_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/wsgiserver/ssl_builtin.py -------------------------------------------------------------------------------- /web/wsgiserver/ssl_pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/web/wsgiserver/ssl_pyopenssl.py -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyaz/PlexDownloader/HEAD/webui.py --------------------------------------------------------------------------------