Skip to content

Instantly share code, notes, and snippets.

View stquinn's full-sized avatar

Stephen Quinn stquinn

  • Ireland
View GitHub Profile
@stquinn
stquinn / plex_to_jellyfin_tags.py
Last active May 5, 2025 16:56
Script to sync Plex Labels to jellyfin Tags
import argparse
import logging
from xml.etree import ElementTree
from plexapi.server import PlexServer
from jellyfin_apiclient_python import JellyfinClient
# ----------------- SETUP LOGGING ------------------
def setup_logging(to_stdout=False):
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
root = logging.getLogger()