blob: 4783949a2c508f0d81cceeba931569d8a9e67203 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
"""Generic extractors focus on information that is typically available on all
files. Examples include file system information (file name and size, mime type,
etc.) and information that is independent of the actual file (constant triples,
host platform infos, current time, etc.).
Part of the bsie module.
A copy of the license is provided with the project.
Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
# exports
__all__: typing.Sequence[str] = []
## EOF ##
|