embypy icon indicating copy to clipboard operation
embypy copied to clipboard

python wrapper for the emby rest api

Results 1 embypy issues
Sort by recently updated
recently updated
newest added

` server = serverConfig( Path('__file__').parent.parent.joinpath('config.yaml')) for l in [m for m in server.emby.movies if re.search(r'^[1|2]\d{3}.', m.name)]: newName = f"{l.name[5:].replace('.', ' ')} ({l.name[0:4]})" l.name = newName l.post() ` I'm trying to...