Source code for stonesoup.reader.file

"""Base classes for use with File based readers."""
from pathlib import Path

from .base import Reader
from ..base import Property


[docs]class FileReader(Reader): """Base class for file based readers.""" path: Path = Property(doc="Path to file to be opened. Str will be converted to path.") def __init__(self, path, *args, **kwargs): if not isinstance(path, Path): path = Path(path) # Ensure Path super().__init__(path, *args, **kwargs)
[docs]class BinaryFileReader(FileReader): """Base class for binary file readers.""" def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)
[docs]class TextFileReader(FileReader): """Base class for text file readers.""" encoding: str = Property( default="utf-8", doc="File encoding. Must be valid coding. Default 'utf-8'.") def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)