You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.