aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/base/reader.py
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2022-12-24 10:27:09 +0100
committerMatthias Baumgartner <dev@igsor.net>2022-12-24 10:27:09 +0100
commit266c2c9a072bf3289fd7f2d75278b7d59528378c (patch)
tree60760e0fec84d5cd7b3f3efef11e3892df5cc85a /bsie/base/reader.py
parented2074ae88f2db6cb6b38716b43b35e29eb2e16c (diff)
downloadbsie-266c2c9a072bf3289fd7f2d75278b7d59528378c.tar.gz
bsie-266c2c9a072bf3289fd7f2d75278b7d59528378c.tar.bz2
bsie-266c2c9a072bf3289fd7f2d75278b7d59528378c.zip
package restructuring: base
* Reader and Extractor to respective reader/extractor modules * ReaderBuilder to reader module * ExtractorBuilder to extractor module * Loading module in utils (safe_load, unpack_name) * Pipeline and PipelineBuilder to lib module * errors to utils * documentation: "standard import" and "external import"
Diffstat (limited to 'bsie/base/reader.py')
-rw-r--r--bsie/base/reader.py47
1 files changed, 0 insertions, 47 deletions
diff --git a/bsie/base/reader.py b/bsie/base/reader.py
deleted file mode 100644
index cbabd36..0000000
--- a/bsie/base/reader.py
+++ /dev/null
@@ -1,47 +0,0 @@
-"""The Reader classes return high-level content structures from files.
-
-The Reader fulfills two purposes:
- First, it brokers between multiple libraries and file formats.
- Second, it separates multiple aspects of a file into distinct content types.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
-# imports
-import abc
-import typing
-
-# bsie imports
-from bsie.utils import bsfs
-
-# exports
-__all__: typing.Sequence[str] = (
- 'Reader',
- )
-
-
-## code ##
-
-class Reader(abc.ABC):
- """Read and return some content from a file."""
-
- def __str__(self) -> str:
- return bsfs.typename(self)
-
- def __repr__(self) -> str:
- return f'{bsfs.typename(self)}()'
-
- def __eq__(self, other: typing.Any) -> bool:
- return isinstance(other, type(self))
-
- def __hash__(self) -> int:
- return hash(type(self))
-
- @abc.abstractmethod
- def __call__(self, path: bsfs.URI) -> typing.Any:
- """Return some content of the file at *path*.
- Raises a `ReaderError` if the reader cannot make sense of the file format.
- """
-
-## EOF ##