Package secfsdstools

main init.py

Defines the version attribut of the library

Expand source code
"""
main __init__.py

Defines the version attribut of the library
"""
import logging
import sys
from importlib.metadata import version, PackageNotFoundError

import secfsdstools.update

try:
    __version__ = version("secfsdstools")
except PackageNotFoundError:
    __version__ = "0.0.0"  # Fallback-Version, falls das Paket nicht installiert ist

Sub-modules

secfsdstools.a_config
secfsdstools.a_utils
secfsdstools.b_setup
secfsdstools.c_automation
secfsdstools.c_download
secfsdstools.c_index
secfsdstools.c_transform
secfsdstools.c_update
secfsdstools.c_update_check

check-for-update launcher. helping to ensure that the check is executed when main functionality is used: d_container, e_collector, e_filter, …

secfsdstools.d_container

force import of update_check

secfsdstools.e_collector

force import of update_check

secfsdstools.e_filter

force import of update_check

secfsdstools.e_presenter

force import of update_check

secfsdstools.f_standardize

force import of update_check

secfsdstools.g_pipelines
secfsdstools.u_usecases
secfsdstools.update

Getting everything ready to work with the data.

secfsdstools.x_examples