refactor: estructura limpia con __init__.py (Semanas 1-2)

- Añadido __init__.py en todas las carpetas
- Renombrado monitoring/ a utils/
- Eliminadas carpetas vacías/futuras
- Estructura base lista para Semanas 3-4
This commit is contained in:
DaM
2026-01-27 08:27:41 +01:00
parent 0091b302a1
commit cc6913168f
21 changed files with 5 additions and 20 deletions

0
src/__init__.py Normal file
View File

View File

@@ -1,2 +0,0 @@
#Start Coding

View File

@@ -1 +0,0 @@
#Start Coding

View File

@@ -8,7 +8,7 @@ import pandas as pd
from datetime import datetime, timedelta
from typing import List, Optional, Dict
import time
from ..monitoring.logger import log
from ..utils.logger import log
class DataFetcher:
"""

View File

@@ -5,7 +5,7 @@ Módulo para limpiar, validar y procesar datos de mercado
import pandas as pd
import numpy as np
from typing import Optional
from ..monitoring.logger import log
from ..utils.logger import log
class DataProcessor:
"""

View File

@@ -10,7 +10,7 @@ from datetime import datetime
from typing import Optional, List
import redis
import json
from ..monitoring.logger import log
from ..utils.logger import log
Base = declarative_base()

View File

@@ -1 +0,0 @@
#Start Coding

View File

@@ -1 +0,0 @@
#start Coding

View File

@@ -1 +0,0 @@
#Start Coding

View File

@@ -1 +0,0 @@
#start Coding

View File

@@ -1 +0,0 @@
#Start Coding

View File

@@ -1 +0,0 @@
#Start Coding

View File

@@ -1 +0,0 @@
#Start Coding

View File

@@ -1,2 +0,0 @@
#start Coding

View File

@@ -1 +0,0 @@
#start coding

View File

@@ -1,2 +0,0 @@
#start coding

0
src/utils/__init__.py Normal file
View File

0
src/utils/alerts.py Normal file
View File