Integrazione codebase RSE

This commit is contained in:
AndreStork
2025-06-16 09:31:15 +02:00
parent d34a6ab3e0
commit a422acf477
145 changed files with 7867516 additions and 1 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1408
src/Functions_General.py Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

11
src/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
import os
import glob
# Prendi tutti i file .py nella cartella corrente (src), tranne __init__.py
modules = glob.glob(os.path.join(os.path.dirname(__file__), "*.py"))
modules = [os.path.basename(f)[:-3] for f in modules if not f.endswith("__init__.py")]
# Importa dinamicamente ogni modulo trovato
for module_name in modules:
exec(f"from . import {module_name}")

Binary file not shown.

Binary file not shown.

Binary file not shown.