├── .gitignore ├── README.md ├── csmedia.py ├── example_settings.yml ├── general_functions.py ├── load_settings.py ├── movie_data.json ├── plex_functions.py ├── requirements.txt ├── settings_blank.yml └── update_library.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/README.md -------------------------------------------------------------------------------- /csmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/csmedia.py -------------------------------------------------------------------------------- /example_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/example_settings.yml -------------------------------------------------------------------------------- /general_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/general_functions.py -------------------------------------------------------------------------------- /load_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/load_settings.py -------------------------------------------------------------------------------- /movie_data.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /plex_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/plex_functions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings_blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/settings_blank.yml -------------------------------------------------------------------------------- /update_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mike7154/plex_family_management/HEAD/update_library.py --------------------------------------------------------------------------------