Apache Airflow is an open source tool for creating task pipelines. It lets you define sets of tasks and dependencies between those tasks, and then takes care of the execution.
Airflow can be a useful add-on to SherlockML: you can schedule
| FROM python:3.8 | |
| ENV PYTHONUNBUFFERED 1 | |
| # Install node prereqs, nodejs and yarn | |
| # Ref: https://deb.nodesource.com/setup_10.x | |
| # Ref: https://yarnpkg.com/en/docs/install | |
| RUN \ | |
| apt-get update && \ | |
| apt-get install -yqq apt-transport-https xfonts-base xfonts-75dpi libsasl2-dev | |
| RUN \ |
Apache Airflow is an open source tool for creating task pipelines. It lets you define sets of tasks and dependencies between those tasks, and then takes care of the execution.
Airflow can be a useful add-on to SherlockML: you can schedule
| from pylivetrader.api import ( | |
| attach_pipeline, | |
| date_rules, | |
| time_rules, | |
| order, | |
| get_open_orders, | |
| cancel_order, | |
| pipeline_output, | |
| schedule_function, | |
| ) |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Xml; | |
| using Newtonsoft.Json.Linq; | |
| using RestSharp; | |
| namespace ConsoleApplication3 |