base_handler module

All handlers implement the abstract BaseHandler class. It defines that each handler implement an “execute” method.

BaseDBHandler (Database handlers) must implement connection parameters.

Handlers are responsible for connecting to a source of data to either retrieve data or to write data. Connectors then implement these handlers to manage the input/output of data.

class base_handler.BaseDBHandler

Bases: base_handler.BaseHandler

abstract property columns: list
abstract property db: str
abstract property host: str
abstract property password: str
abstract property port: str
abstract property query: str
abstract property username: str
class base_handler.BaseHandler

Bases: abc.ABC

abstract execute()