All Projects → domenp → aircal

domenp / aircal

Licence: MIT license
Visualize Airflow's schedule by exporting future DAG runs as events to Google Calendar.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to aircal

Phpcalfeed
A simple PHP script for providing calendar feeds for your website in a variety of different formats including iCalendar, RSS, JSON and XML.
Stars: ✭ 31 (-53.03%)
Mutual labels:  schedule, calendar, google-calendar
Laravel Google Calendar
Manage events on a Google Calendar
Stars: ✭ 787 (+1092.42%)
Mutual labels:  schedule, calendar, google-calendar
Tui.calendar
🍞📅A JavaScript calendar that has everything you need.
Stars: ✭ 9,537 (+14350%)
Mutual labels:  schedule, calendar
Quick Plan
Defines and schedules Garmin workouts
Stars: ✭ 93 (+40.91%)
Mutual labels:  schedule, calendar
Incubator Dolphinscheduler
Apache DolphinScheduler is a distributed and extensible workflow scheduler platform with powerful DAG visual interfaces, dedicated to solving complex job dependencies in the data pipeline and providing various types of jobs available out of box.
Stars: ✭ 6,916 (+10378.79%)
Mutual labels:  airflow, schedule
Period
Complex period comparisons
Stars: ✭ 1,001 (+1416.67%)
Mutual labels:  schedule, calendar
Forcal
📅 Das AddOn ist ein variabel einsetzbarer Kalender(-Generator), Skedule, Newssystem, Event- und Terminplaner für REDAXO 5.x.
Stars: ✭ 52 (-21.21%)
Mutual labels:  schedule, calendar
Icalendar Generator
Generate calendars in the iCalendar format
Stars: ✭ 193 (+192.42%)
Mutual labels:  schedule, calendar
Argo Workflows
Workflow engine for Kubernetes
Stars: ✭ 10,024 (+15087.88%)
Mutual labels:  airflow, dag
Xene
A distributed workflow runner focusing on performance and simplicity.
Stars: ✭ 56 (-15.15%)
Mutual labels:  airflow, dag
Aws Ecs Airflow
Run Airflow in AWS ECS(Elastic Container Service) using Fargate tasks
Stars: ✭ 107 (+62.12%)
Mutual labels:  airflow, dag
Opening Hours
Query and format a set of opening hours
Stars: ✭ 997 (+1410.61%)
Mutual labels:  schedule, calendar
Gantt Schedule Timeline Calendar
Gantt Gantt Gantt Timeline Schedule Calendar [ javascript gantt, js gantt, projects gantt, timeline, scheduler, gantt timeline, reservation timeline, react gantt, angular gantt, vue gantt, svelte gantt, booking manager ]
Stars: ✭ 990 (+1400%)
Mutual labels:  schedule, calendar
Late
A web app for RPI students to manage their course load.
Stars: ✭ 53 (-19.7%)
Mutual labels:  schedule, calendar
Angular Gantt Schedule Timeline Calendar
Angular version of gantt-schedule-timeline-calendar [ angular gantt, gantt chart, angular gantt chart, angular schedule, angular timeline, angular calendar, gantt chart, schedule, scheduler, timeline, calendar ]
Stars: ✭ 32 (-51.52%)
Mutual labels:  schedule, calendar
Vue Schedule Calendar
日程调度日历。
Stars: ✭ 110 (+66.67%)
Mutual labels:  schedule, calendar
Add Event To Calendar Docs
📅 Docs how to generate links to add events to online calendar services
Stars: ✭ 193 (+192.42%)
Mutual labels:  calendar, google-calendar
aircan
💨🥫 A Data Factory system for running data processing pipelines built on AirFlow and tailored to CKAN. Includes evolution of DataPusher and Xloader for loading data to DataStore.
Stars: ✭ 24 (-63.64%)
Mutual labels:  airflow, dag
Airflow Maintenance Dags
A series of DAGs/Workflows to help maintain the operation of Airflow
Stars: ✭ 914 (+1284.85%)
Mutual labels:  airflow, dag
Example Airflow Dags
Example DAGs using hooks and operators from Airflow Plugins
Stars: ✭ 243 (+268.18%)
Mutual labels:  airflow, dag

Aircal

This library helps visualizing Airflow's DAG run schedule. It does that by exporting future DAG runs as events to Google Calendar.

Having DAG run as events in the calendar might help you:

  • visualize the utilization of your airflow workers to better spread your jobs
  • determine when a certain DAG should be finished to monitor the service.

DAG run visualization

The library will also observe the changes to your DAGs and synchronize it with the calendar:

  • add runs for the freshly added DAGs
  • change start and/or end time when an existing DAG changes the schedule (or the execution time changes significantly)
  • delete run events when a DAG is removed (or paused)

Tip: run the sync script regularly, perhaps, with you know, Airflow :)

The library only support DAG schedules that use the standard cron syntax. The rest will be ignored (with a warning).

Warning: This is an beta stage software. Expect occassional bugs and rough edges (PR welcome).

Installation & setup

pip install aircal

Alternatively you can clone the repo and install it from there:

pip install -e .

Google API credentials are required to create events in the calendar. You can obtain them here. Store credentials.json into a directory accessible by your code.

The library is modifying and deleting calendar events. I highly recommend creating a new calendar to be used by this software: "add calendar" -> "create new calendar" in Google calendar settings.

Usage

See example.py for an example of the potential pipeline that can be run on the regular intervals.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].