├── .gitignore
├── Procfile
├── README.md
├── app.py
├── helpers.py
├── playlist.py
├── requirements.txt
├── static
├── functions.js
└── styles.css
└── templates
├── about.html.jinja
├── addplaylist.html
├── connect.html.jinja
├── index.html.jinja
├── layout.html.jinja
├── playlists.html.jinja
├── server.html.jinja
└── tryagain.html.jinja
/.gitignore:
--------------------------------------------------------------------------------
1 | /.vscode
2 | /__pycache__
3 | /venv-plexweb
4 | venv
--------------------------------------------------------------------------------
/Procfile:
--------------------------------------------------------------------------------
1 | web: gunicorn app:app
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [![Forks][forks-shield]][forks-url]
2 | [![Stargazers][stars-shield]][stars-url]
3 | [![Issues][issues-shield]][issues-url]
4 |
5 |
6 |
7 |
8 |
9 |
10 |
13 | Add IMDb playlists to your Plex server
14 |
15 | View Website
16 | ·
17 | Report Bug or Request Feature
18 |
13 | PlexWeb is a webpage that - in a simple way - allows you to browse your Plex server and manage it. 14 |
15 | {% endblock %} 16 | -------------------------------------------------------------------------------- /templates/addplaylist.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html.jinja" %} {% block title %} - Add Playlist {% endblock 2 | %} {% block main %} 3 | 4 |7 | New playlists can be added by scraping an IMDb list. Go to the web link of a 8 | list (like 9 | this) 10 | and copy the list ID from the URL. Select the name and which users you want 11 | to copy the playlist to (The owner is included by default). 12 |
13 |14 | All playlists connected to the owner of the plex server. Press a playlist to get a table with all movies on the playlist. 15 |
16 | 17 |16 | Press the button to update the user activity. Your own stream will not show. 17 |
18 | 19 | 20 | 21 |36 | Search for movies and shows in your plex library. No episodes will show. 37 |
38 | 39 |