November 2018
Intermediate to advanced
360 pages
9h 36m
English
from datetime import datetime, timedeltaimport osfrom os.path import isfilefrom airflow import DAGfrom airflow.operators.python_operator import PythonOperatorfrom airflow.contrib.hooks.ftp_hook import FTPHookfrom airflow.contrib.hooks.fs_hook import FSHookfrom airflow.contrib.sensors.file_sensor import FileSensor
dag_args = { 'owner': 'airflow', 'description': 'Bioinformatics with Python Cookbook pipeline', 'depends_on_past': ...