Commit 08b96c74 authored by Cristian Aguirre's avatar Cristian Aguirre

Init commit

parent 5fca2ea8
from enum import Enum
class InputTypeEnum(Enum):
LOCAL = "local"
DATABASE = "db"
BUCKET = "bucket"
class Input:
def __init__(self, input_type: str) -> None:
self.input_type = input_type
import logging
logger = logging.getLogger()
app:
input:
type: bucket
provider: aws
output:
type: bucket
provider: aws
import time
import logging
logger = logging.getLogger()
if __name__ == "__main__":
start_time = time.time()
logger.info(f"Duración de ejecución del proceso: {start_time - time.time()}")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment