git-subtree-dir: My-Data-Engineering-Portifolio git-subtree-mainline:d606a91bd5git-subtree-split:af9dfac5db
20 lines
473 B
Python
20 lines
473 B
Python
from __future__ import division, absolute_import, print_function
|
|
|
|
from airflow.plugins_manager import AirflowPlugin
|
|
|
|
import operators
|
|
import helpers
|
|
|
|
# Defining the plugin class
|
|
class UdacityPlugin(AirflowPlugin):
|
|
name = "udacity_plugin"
|
|
operators = [
|
|
operators.StageToRedshiftOperator,
|
|
operators.LoadFactOperator,
|
|
operators.LoadDimensionOperator,
|
|
operators.DataQualityOperator
|
|
]
|
|
helpers = [
|
|
helpers.SqlQueries
|
|
]
|