Skip to content

Commit 4549b7e

Browse files
refactor: Separate ParamsValidator into standalone component
This commit separates the ParamsValidator class into its own component, improving code organization and modularity. The ValidParamsForCall method has been renamed to __ValidParamsForCall__ to indicate that it is a private method.
1 parent de4f6a4 commit 4549b7e

File tree

7 files changed

+220
-223
lines changed

7 files changed

+220
-223
lines changed

etl/config/logFile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33

44
def logFileName(file: str) -> str:
5-
current_dir = os.path.dirname(os.path.relpath(__file__))
5+
current_dir = os.path.dirname(os.path.relpath(file))
66
WORK_DIR = current_dir.split("/")[-1:][0]
77
return WORK_DIR

etl/controller/pipeline.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
from etl.models.extract.ApiToParquetFile import extraction
2-
from etl.config.logFile import logFileName
3-
4-
mdName = logFileName(file=__file__)
52

63

74
class ExecutePipeline:

etl/main.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
import random
1+
import time
22

3+
start = time.time()
4+
import random
35
import requests
46

57
from etl.controller.pipeline import ExecutePipeline
@@ -24,3 +26,5 @@ def GenerateRandomParams(ParamsQty: int) -> list:
2426

2527
if __name__ == "__main__":
2628
NewExec = ExecutePipeline(*GenerateRandomParams(1))
29+
30+
print("Tempo decorrido: ", time.time() - start, "segundos")

etl/models/extract/ApiToParquetFile.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@
99
from tqdm import tqdm
1010

1111
# Imports de Módulos Internos
12-
from etl.models.extract import (
13-
loggingInfo,
14-
loggingWarn,
15-
DefaultOutputFolder,
12+
from etl.common.utils.logs import loggingInfo, loggingWarn
13+
from etl.common.utils.common import (
1614
DefaultTimestampStr,
15+
DefaultOutputFolder,
1716
DefaultUTCDatetime,
1817
)
1918
from etl.config.logFile import logFileName
@@ -63,7 +62,8 @@ def PipelineRun(self, ValidParams: list) -> list:
6362
else:
6463
if tryNumber < API.RETRY_ATTEMPTS - 1:
6564
loggingWarn(
66-
f"response error, status_code {response.status_code}. Retrying in {API.RETRY_TIME_SECONDS} seconds...",
65+
f"""response error, status_code {response.status_code}.
66+
Retrying in {API.RETRY_TIME_SECONDS} seconds...""",
6767
WORK_DIR,
6868
)
6969
for _ in tqdm(range(100), total=100, desc=f"loading"):
@@ -75,7 +75,9 @@ def PipelineRun(self, ValidParams: list) -> list:
7575
else:
7676
loggingWarn("Attempt limits exceeded", WORK_DIR)
7777
raise ConnectionError(
78-
f"Could not connect to the server after 3 attempts. Please try again later. Response status code: {response.status_code}"
78+
f"""Could not connect to the server after 3 attempts.
79+
Please try again later.
80+
Response status code: {response.status_code}"""
7981
)
8082

8183
output_path = DefaultOutputFolder()

etl/models/extract/ParamsValidator.py

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
import requests
2-
import os
3-
from dotenv import load_dotenv
42
from etl.common.utils.logs import loggingWarn
3+
from etl.config.datasource import API
4+
from etl.config.logFile import logFileName
55

6-
mdName = "extract"
7-
8-
load_dotenv()
9-
10-
SRV_URL = str(os.getenv("SERVER_URL"))
11-
""" Reference for Server URL from enviroment variable """
6+
WORK_DIR = logFileName(file=__file__)
127

138

149
class ParamsValidator:
@@ -25,17 +20,17 @@ def __ValidParamsForCall__(self) -> list:
2520
2621
"""
2722
valParams = []
28-
AvaliableList = requests.get(SRV_URL + "/json/available").json()
23+
AvaliableList = requests.get(API.ENDPOINT_AVALIABLE_PARITIES).json()
2924

3025
for param in self.params:
3126
if param in AvaliableList:
3227
valParams.append(param)
3328
else:
34-
loggingWarn(f"Param: {param} is not valid for call", mdName)
29+
loggingWarn(f"Param: {param} is not valid for call", WORK_DIR)
3530

3631
if valParams:
3732
return valParams
3833
else:
3934
raise KeyError(
40-
f"The informed params: {self.params} are not avaliable for extract, see available list in: {SRV_URL + '/json/available'}"
35+
f"The informed params: {self.params} are not avaliable for extract, see available list in: {API.ENDPOINT_AVALIABLE_PARITIES}"
4136
)

etl/models/extract/__init__.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +0,0 @@
1-
# Custom Logs
2-
from etl.common.utils.logs import loggingInfo, loggingError, loggingWarn
3-
from etl.common.utils.common import (
4-
DefaultTimestampStr,
5-
DefaultOutputFolder,
6-
DefaultUTCDatetime,
7-
)

0 commit comments

Comments
 (0)