[944daf]: / test2.py

Download this file

20 lines (12 with data), 430 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python !/usr/bin/env python
# -*- coding: utf-8 -*
# !!!!!!!!! FIRST CONFIGURE SETTINGS.YAML TO MATCH YOUR NEEDS !!!!!!!!!!
# Simple script to run the Pipeline Wrapper,
import logging
from tasks import taskCoordinator
from config import settings
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(message)s')
TaskManager = taskCoordinator()
TaskManager.print_pipeline()
TaskManager.run2()
exit(1)