├── .env.example ├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── README.md ├── __init__.py ├── coming_soon_dummy.mp4 ├── core ├── __init__.py ├── config.py ├── logger.py └── nfo.py ├── docker-compose.yml ├── dockerfile ├── dummy.mp4 ├── main.py ├── rename_folders_to_arr.py ├── requirements.txt └── services ├── __init__.py ├── calendar_sync.py ├── emby_client.py ├── handlers.py ├── integrations.py ├── jellyfin_client.py ├── migration.py ├── plex_client.py ├── queue_monitor.py └── utils.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to mark directory as Python package 2 | -------------------------------------------------------------------------------- /coming_soon_dummy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/coming_soon_dummy.mp4 -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to make directory a Python package 2 | -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/core/config.py -------------------------------------------------------------------------------- /core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/core/logger.py -------------------------------------------------------------------------------- /core/nfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/core/nfo.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/dockerfile -------------------------------------------------------------------------------- /dummy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/dummy.mp4 -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/main.py -------------------------------------------------------------------------------- /rename_folders_to_arr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/rename_folders_to_arr.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to make directory a Python package 2 | -------------------------------------------------------------------------------- /services/calendar_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/calendar_sync.py -------------------------------------------------------------------------------- /services/emby_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/emby_client.py -------------------------------------------------------------------------------- /services/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/handlers.py -------------------------------------------------------------------------------- /services/integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/integrations.py -------------------------------------------------------------------------------- /services/jellyfin_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/jellyfin_client.py -------------------------------------------------------------------------------- /services/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/migration.py -------------------------------------------------------------------------------- /services/plex_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/plex_client.py -------------------------------------------------------------------------------- /services/queue_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/queue_monitor.py -------------------------------------------------------------------------------- /services/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheIndieArmy/placeholdarr/HEAD/services/utils.py --------------------------------------------------------------------------------