Spaces:
Sleeping
Sleeping
File size: 440 Bytes
85bba48 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from textsummarizer.pipeline.stage_01_data_ingestion import DataIngestionPipeline
from textsummarizer.logging import logger
STAGE_NAME = "Data Ingestion stage"
try:
logger.info(f">>>>>> stage {STAGE_NAME} started <<<<<<")
data_ingestion = DataIngestionPipeline()
data_ingestion.main()
logger.info(f">>>>>> stage {STAGE_NAME} completed <<<<<<\n\nx==========x")
except Exception as e:
logger.exception(e)
raise e |