plexmatch

for handle .plexmatch file


License
MIT
Install
pip install plexmatch==0.1.1

Documentation

plexmatch

Test

A simple library for handle plexmatch file.

Usage

from pathlib import Path
from plexmatch import parse, tostr

plex_match = parse(Path('.plexmatch').read_text())
# do something with plex_match, then:
Path('.plexmatch').write_text(tostr(plex_match))