From d2b4a528465dc01e8db92b61293c458c7911a333 Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Mon, 31 Oct 2022 12:21:22 +0100 Subject: essential interfaces (reader, extractor, errors) --- bsie/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bsie/__init__.py (limited to 'bsie/__init__.py') diff --git a/bsie/__init__.py b/bsie/__init__.py new file mode 100644 index 0000000..2f2477a --- /dev/null +++ b/bsie/__init__.py @@ -0,0 +1,13 @@ +"""The BSIE module extracts triples from files for insertion into a BSFS storage. + +Part of the bsie module. +A copy of the license is provided with the project. +Author: Matthias Baumgartner, 2022 +""" +# imports +import typing + +# exports +__all__: typing.Sequence[str] = [] + +## EOF ## -- cgit v1.2.3 From 559e643bb1fa39feefd2eb73847ad9420daf1deb Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Wed, 14 Dec 2022 06:10:25 +0100 Subject: bsie extraction and info apps --- bsie/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bsie/__init__.py') diff --git a/bsie/__init__.py b/bsie/__init__.py index 2f2477a..2b874bd 100644 --- a/bsie/__init__.py +++ b/bsie/__init__.py @@ -5,8 +5,14 @@ A copy of the license is provided with the project. Author: Matthias Baumgartner, 2022 """ # imports +import collections import typing +# constants +version_info = collections.namedtuple('version_info', + ('major', 'minor', 'micro')) \ + (0, 0, 1) + # exports __all__: typing.Sequence[str] = [] -- cgit v1.2.3 From 3dc3e9a9b0fc8c9727f91359814866d3deae6e79 Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Thu, 15 Dec 2022 16:42:07 +0100 Subject: minor fixes and comments --- bsie/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bsie/__init__.py') diff --git a/bsie/__init__.py b/bsie/__init__.py index 2b874bd..96e6953 100644 --- a/bsie/__init__.py +++ b/bsie/__init__.py @@ -9,9 +9,8 @@ import collections import typing # constants -version_info = collections.namedtuple('version_info', - ('major', 'minor', 'micro')) \ - (0, 0, 1) +T_VERSION_INFO = collections.namedtuple('T_VERSION_INFO', ('major', 'minor', 'micro')) +version_info = T_VERSION_INFO(0, 0, 1) # exports __all__: typing.Sequence[str] = [] -- cgit v1.2.3 From 5850ff2bcb1052883cf301590126609b0657fbc9 Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Sun, 18 Dec 2022 13:37:02 +0100 Subject: cosmetic changes --- bsie/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bsie/__init__.py') diff --git a/bsie/__init__.py b/bsie/__init__.py index 96e6953..8d2308c 100644 --- a/bsie/__init__.py +++ b/bsie/__init__.py @@ -9,7 +9,7 @@ import collections import typing # constants -T_VERSION_INFO = collections.namedtuple('T_VERSION_INFO', ('major', 'minor', 'micro')) +T_VERSION_INFO = collections.namedtuple('T_VERSION_INFO', ('major', 'minor', 'micro')) # pylint: disable=invalid-name version_info = T_VERSION_INFO(0, 0, 1) # exports -- cgit v1.2.3