30 lines
570 B
Python
30 lines
570 B
Python
# batch_ia/__init__.py
|
|
|
|
# config.py
|
|
from .utils.config import TEMPLATE_PATH, load_config, session_uuid, TEMP_SECTIONS
|
|
|
|
# files.py
|
|
from .utils.files import write_report
|
|
|
|
# graphs.py
|
|
from .utils.graphs import (
|
|
parse_graphs,
|
|
extract_data_from_graph,
|
|
calculate_vulnerabilities
|
|
)
|
|
|
|
# sections.py
|
|
from .utils.sections import generate_report
|
|
|
|
__all__ = [
|
|
"TEMPLATE_PATH",
|
|
"session_uuid",
|
|
"TEMP_SECTIONS",
|
|
"load_config",
|
|
"write_report",
|
|
"parse_graphs",
|
|
"extract_data_from_graph",
|
|
"calculate_vulnerabilities",
|
|
"generate_report",
|
|
]
|