This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# | |
# plexwatcher.py - parse watcher events to partially scan plex libraries | |
# relevant paths and sections are discovered directly from the plex database | |
# | |
# Author: Felix Buenemann - https://github.com/felixbuenemann | |
import os, sys, re, sqlite3, subprocess | |
from os.path import dirname | |
# reload(sys) |