I just realized that `parser.from_file` does not accept a `pathlib.Path` object. ```python import pathlib path = pathlib.Path("/somepath/filename.pdf") tika.parser.from_file(path) ``` fails with `AttributeError: 'PosixPath' object has no attribute 'decode'`.