Added
* Added function `file_reader` which accepts a .xer file and reads it to a string object.
* Accepts str or Path objects for files stored locally or on a server.
* Accepts BinaryIO files from requests, Flask, FastAPI, etc...
* Added classmethods `reader` to the `Xer` class. A .xer file can be passed directly to this method, which will read and decode the file, and return a `Xer` object. Uses the `file_reader` function above.
Changed
* Changed name of function `xer_to_dict` to `parser`.
---