- Correction des 907 erreurs ruff (pathlib, imports, nommage, simplifications, docstrings) - Fix déduplication labels dans multiselect nœuds d'arrivée (analyse) - Expansion 1→N label→IDs pour le Sankey (Pays d'opération) - Ajout CLAUDE.md et document de design de l'audit - Mise à jour .gitignore (artefacts tests exploratoires) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
554 B
Python
26 lines
554 B
Python
# batch_ia/__init__.py
|
|
|
|
# config.py
|
|
from .utils.config import TEMP_SECTIONS, TEMPLATE_PATH, load_config, session_uuid
|
|
|
|
# files.py
|
|
from .utils.files import write_report
|
|
|
|
# graphs.py
|
|
from .utils.graphs import calculate_vulnerabilities, extract_data_from_graph, parse_graphs
|
|
|
|
# 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",
|
|
]
|