blob: b6da06af15e172edf9d03452fd642c6bcfd246fe [file] [log] [blame]
#!/usr/bin/env python
# coding=utf-8
"""AcquisitorAndCleaner engine action.
Use this module to add the project main code.
"""
from .._compatibility import six
from .._logging import get_logger
from marvin_python_toolbox.engine_base import EngineBaseDataHandler
__all__ = ['AcquisitorAndCleaner']
logger = get_logger('acquisitor_and_cleaner')
class AcquisitorAndCleaner(EngineBaseDataHandler):
def __init__(self, **kwargs):
super(AcquisitorAndCleaner, self).__init__(**kwargs)
def execute(self, params, **kwargs):
"""
Setup the initial_dataset with all cleaned data necessary to build your dataset in the next action.
Eg.
self.marvin_initial_dataset = {...}
"""
self.marvin_initial_dataset = {}