Source code for bis_fetcher.__init__
import os
from hyfi import HyFI
from ._version import __version__
# Read the package path from the current directory
__package_path__ = os.path.dirname(__file__)
# Initialize the global HyFI object
HyFI.initialize_global_hyfi(
package_path=__package_path__,
version=__version__,
plugins=[],
)
# Initialize the logger
HyFI.setLogger()
__all__ = ["HyFI", "get_version"]