2018-11-13 17:01:44 +03:00
<!--
2019-08-22 06:27:54 +03:00
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
2018-11-13 17:01:44 +03:00
-->
2019-01-05 17:05:25 +03:00
# Apache Airflow
2014-10-07 01:29:38 +04:00
2017-05-09 23:14:50 +03:00
[![PyPI version ](https://badge.fury.io/py/apache-airflow.svg )](https://badge.fury.io/py/apache-airflow)
2019-01-05 17:05:25 +03:00
[![Build Status ](https://travis-ci.org/apache/airflow.svg?branch=master )](https://travis-ci.org/apache/airflow)
[![Coverage Status ](https://img.shields.io/codecov/c/github/apache/airflow/master.svg )](https://codecov.io/github/apache/airflow?branch=master)
2018-02-12 19:26:55 +03:00
[![Documentation Status ](https://readthedocs.org/projects/airflow/badge/?version=latest )](https://airflow.readthedocs.io/en/latest/?badge=latest)
2018-05-02 09:36:59 +03:00
[![License ](http://img.shields.io/:license-Apache%202-blue.svg )](http://www.apache.org/licenses/LICENSE-2.0.txt)
2018-09-04 10:34:20 +03:00
[![PyPI - Python Version ](https://img.shields.io/pypi/pyversions/apache-airflow.svg )](https://pypi.org/project/apache-airflow/)
2018-09-11 00:30:35 +03:00
[![Twitter Follow ](https://img.shields.io/twitter/follow/ApacheAirflow.svg?style=social&label=Follow )](https://twitter.com/ApacheAirflow)
2019-02-21 14:52:05 +03:00
[![Slack Status ](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social )](https://apache-airflow-slack.herokuapp.com/)
2015-10-21 21:11:22 +03:00
2020-03-30 09:20:41 +03:00
[Apache Airflow ](https://airflow.apache.org/docs/stable/ ) (or simply Airflow) is a platform to programmatically author, schedule, and monitor
workflows.
2015-07-22 03:45:33 +03:00
2015-09-17 20:33:59 +03:00
When workflows are defined as code, they become more maintainable,
2015-08-19 18:51:30 +03:00
versionable, testable, and collaborative.
2018-09-06 21:57:15 +03:00
Use Airflow to author workflows as directed acyclic graphs (DAGs) of tasks. The Airflow scheduler executes your tasks on an array of workers while following the specified dependencies. Rich command line utilities make performing complex surgeries on DAGs a snap. The rich user interface makes it easy to visualize pipelines running in production, monitor progress, and troubleshoot issues when needed.
2015-07-22 03:45:33 +03:00
2019-08-22 06:27:54 +03:00
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE - RUN doctoc TO UPDATE -->
**Table of contents**
2020-03-15 01:57:47 +03:00
- [Requirements ](#requirements )
2019-08-22 06:27:54 +03:00
- [Getting started ](#getting-started )
- [Beyond the Horizon ](#beyond-the-horizon )
- [Principles ](#principles )
- [User Interface ](#user-interface )
2020-02-24 12:29:38 +03:00
- [Using hooks and Operators from "master" in Airflow 1.10 ](#using-hooks-and-operators-from-master-in-airflow-110 )
2019-08-22 06:27:54 +03:00
- [Contributing ](#contributing )
- [Who uses Apache Airflow? ](#who-uses-apache-airflow )
- [Who Maintains Apache Airflow? ](#who-maintains-apache-airflow )
2019-10-18 22:18:44 +03:00
- [Can I use the Apache Airflow logo in my presentation? ](#can-i-use-the-apache-airflow-logo-in-my-presentation )
2019-08-22 06:27:54 +03:00
- [Links ](#links )
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2020-03-15 01:57:47 +03:00
## Requirements
Apache Airflow is tested with:
### Master version (2.0.0dev)
* Python versions: 3.6, 3.7
2020-03-26 23:51:44 +03:00
* Postgres DB: 9.6, 10
2020-03-15 01:57:47 +03:00
* MySQL DB: 5.7
* Sqlite - latest stable (it is used mainly for development purpose)
### Stable version (1.10.9)
2020-03-16 10:32:07 +03:00
* Python versions: 2.7, 3.5, 3.6, 3.7
2020-03-26 23:51:44 +03:00
* Postgres DB: 9.6, 10
2020-03-15 01:57:47 +03:00
* MySQL DB: 5.6, 5.7
* Sqlite - latest stable (it is used mainly for development purpose)
2016-03-29 17:37:51 +03:00
## Getting started
2018-08-01 10:50:23 +03:00
2019-01-05 17:05:25 +03:00
Please visit the Airflow Platform documentation (latest **stable** release) for help with [installing Airflow ](https://airflow.apache.org/installation.html ), getting a [quick start ](https://airflow.apache.org/start.html ), or a more complete [tutorial ](https://airflow.apache.org/tutorial.html ).
2018-02-12 19:26:55 +03:00
Documentation of GitHub master (latest development branch): [ReadTheDocs Documentation ](https://airflow.readthedocs.io/en/latest/ )
2016-03-29 17:37:51 +03:00
2016-04-28 04:42:45 +03:00
For further information, please visit the [Airflow Wiki ](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Home ).
2016-03-28 02:03:39 +03:00
2015-09-15 01:53:34 +03:00
## Beyond the Horizon
Airflow **is not** a data streaming solution. Tasks do not move data from
one to the other (though tasks can exchange metadata!). Airflow is not
2015-09-17 20:33:59 +03:00
in the [Spark Streaming ](http://spark.apache.org/streaming/ )
2015-09-15 01:53:34 +03:00
or [Storm ](https://storm.apache.org/ ) space, it is more comparable to
2015-09-17 20:33:59 +03:00
[Oozie ](http://oozie.apache.org/ ) or
2016-02-01 21:27:33 +03:00
[Azkaban ](https://azkaban.github.io/ ).
2015-09-15 01:53:34 +03:00
Workflows are expected to be mostly static or slowly changing. You can think
of the structure of the tasks in your workflow as slightly more dynamic
2015-09-17 20:33:59 +03:00
than a database structure would be. Airflow workflows are expected to look
similar from a run to the next, this allows for clarity around
2015-09-15 01:53:34 +03:00
unit of work and continuity.
2015-07-22 03:45:33 +03:00
## Principles
- **Dynamic**: Airflow pipelines are configuration as code (Python), allowing for dynamic pipeline generation. This allows for writing code that instantiates pipelines dynamically.
- **Extensible**: Easily define your own operators, executors and extend the library so that it fits the level of abstraction that suits your environment.
- **Elegant**: Airflow pipelines are lean and explicit. Parameterizing your scripts is built into the core of Airflow using the powerful **Jinja** templating engine.
2018-09-06 21:57:15 +03:00
- **Scalable**: Airflow has a modular architecture and uses a message queue to orchestrate an arbitrary number of workers.
2015-07-22 03:45:33 +03:00
2016-03-19 23:29:17 +03:00
## User Interface
- **DAGs**: Overview of all DAGs in your environment.
2018-08-01 10:50:23 +03:00
![](/docs/img/dags.png)
2016-03-19 23:29:17 +03:00
- **Tree View**: Tree representation of a DAG that spans across time.
2018-08-01 10:50:23 +03:00
![](/docs/img/tree.png)
2016-03-19 23:29:17 +03:00
- **Graph View**: Visualization of a DAG's dependencies and their current status for a specific run.
2018-08-01 10:50:23 +03:00
![](/docs/img/graph.png)
2016-03-19 23:29:17 +03:00
- **Task Duration**: Total time spent on different tasks over time.
2018-08-01 10:50:23 +03:00
![](/docs/img/duration.png)
2016-03-19 23:29:17 +03:00
- **Gantt View**: Duration and overlap of a DAG.
2018-08-01 10:50:23 +03:00
![](/docs/img/gantt.png)
2016-03-19 23:29:17 +03:00
- **Code View**: Quick way to view source code of a DAG.
2018-08-01 10:50:23 +03:00
![](/docs/img/code.png)
2016-03-19 23:29:17 +03:00
2018-08-22 11:26:54 +03:00
2020-02-24 12:29:38 +03:00
## Using hooks and Operators from "master" in Airflow 1.10
2020-03-31 18:44:44 +03:00
Currently, stable versions of Apache Airflow are released in 1.10.* series. We are working on the
future, major version of Airflow from the 2.0.* series. It is going to be released in 2020. However, the exact time of release depends on many factors and is yet unknown.
2020-02-24 12:29:38 +03:00
We have already a lot of changes in the hooks/operators/sensors for many external systems
and they are not used because they are part of the master/2.0 release.
In the Airflow 2.0 - following AIP-21 "change in import paths" all the non-core operators/hooks/sensors
of Apache Airflow have been moved to the "airflow.providers" package. This opened a possibility to
use the operators from Airflow 2.0 in Airflow 1.10 - with the constraint that those
packages can only be used in python3.6+ environment.
Therefore we decided to prepare and release backport packages that can be installed
for older Airflow versions. Those backport packages are released more frequently. Users do not
have to upgrade their Airflow version to use those packages. There are a number of changes
2020-03-27 00:44:52 +03:00
between Airflow 2.0 and 1.10.* - documented in [UPDATING.md ](UPDATING.md ). With backported
2020-02-24 12:29:38 +03:00
providers package users can migrate their DAGs to the new providers package incrementally
and once they convert to the new operators/sensors/hooks they can seamlessly migrate their
environments to Airflow 2.0.
More information about the status and releases of the back-ported packages are available
at [Backported providers package page ](https://cwiki.apache.org/confluence/display/AIRFLOW/Backported+providers+packages+for+Airflow+1.10.*+series )
2020-03-07 22:55:27 +03:00
Dependencies between packages are stored in ``airflow/providers/dependencies.json``. See
[CONTRIBUTING.rst ](https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst#backport-providers-packages )
2018-08-22 11:26:54 +03:00
## Contributing
2019-10-13 23:20:31 +03:00
Want to help build Apache Airflow? Check out our [contributing documentation ](https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst ).
2018-08-22 11:26:54 +03:00
2018-09-06 21:57:15 +03:00
## Who uses Apache Airflow?
2015-07-22 03:45:33 +03:00
2018-09-06 21:57:15 +03:00
As the Apache Airflow community grows, we'd like to keep track of who is using
2015-09-17 20:33:59 +03:00
the platform. Please send a PR with your company name and @githubhandle
2015-07-22 03:45:33 +03:00
if you may.
2015-09-17 01:46:16 +03:00
Currently **officially** using Airflow:
2015-08-19 19:12:11 +03:00
2019-02-25 14:27:43 +03:00
1. [4G Capital ](http://www.4g-capital.com/ ) [[@posei ](https://github.com/posei )]
2018-07-17 10:32:10 +03:00
1. [6play ](https://www.6play.fr ) [[@lemourA ](https://github.com/lemoura ), [@achaussende ](https://github.com/achaussende ), [@d-nguyen ](https://github.com/d-nguyen ), [@julien-gm ](https://github.com/julien-gm )]
2018-08-24 16:00:35 +03:00
1. [8fit ](https://8fit.com/ ) [[@nicor88 ](https://github.com/nicor88 ), [@frnzska ](https://github.com/frnzska )]
2018-09-20 18:24:52 +03:00
1. [90 Seconds ](https://90seconds.tv/ ) [[@aaronmak ](https://github.com/aaronmak )]
2018-12-31 14:48:49 +03:00
1. [99 ](https://99taxis.com ) [[@fbenevides ](https://github.com/fbenevides ), [@gustavoamigo ](https://github.com/gustavoamigo ) & [@mmmaia ](https://github.com/mmmaia )]
2018-05-15 17:41:40 +03:00
1. [AdBOOST ](https://www.adboost.sk ) [[AdBOOST ](https://github.com/AdBOOST )]
2019-01-03 07:08:26 +03:00
1. [Adobe ](https://www.adobe.com/ ) [[@mishikaSingh ](https://github.com/mishikaSingh ), [@ramandumcs ](https://github.com/ramandumcs ), [@vardancse ](https://github.com/vardancse )]
2016-08-15 01:51:15 +03:00
1. [Agari ](https://github.com/agaridata ) [[@r39132 ](https://github.com/r39132 )]
2019-08-22 14:13:25 +03:00
1. [Agoda ](https://agoda.com ) [[@akki ](https://github.com/akki )]
2018-05-16 04:51:22 +03:00
1. [Airbnb ](http://airbnb.io/ ) [[@mistercrunch ](https://github.com/mistercrunch ), [@artwr ](https://github.com/artwr )]
2018-11-11 02:22:13 +03:00
1. [AirDNA ](https://www.airdna.co )
2019-02-14 20:54:38 +03:00
1. [Airfinity ](https://www.airfinity.com ) [[@sibowyer ](https://github.com/sibowyer )]
2018-05-21 21:08:36 +03:00
1. [Airtel ](https://www.airtel.in/ ) [[@harishbisht ](https://github.com/harishbisht )]
2020-02-19 13:49:02 +03:00
1. [Akamas ](https://akamas.io ) [[@GiovanniPaoloGibilisco ](https://github.com/GiovanniPaoloGibilisco ), [@lucacavazzana ](https://github.com/lucacavazzana )]
2018-02-22 00:09:48 +03:00
1. [Alan ](https://alan.eu ) [[@charles-go ](https://github.com/charles-go )]
2016-08-12 03:55:46 +03:00
1. [allegro.pl ](http://allegro.tech/ ) [[@kretes ](https://github.com/kretes )]
2019-08-10 09:55:47 +03:00
1. [AloPeyk ](https://alopeyk.com ) [[@blcksrx ](https://github.com/blcksrx ), [@AloPeyk ](https://github.com/AloPeyk )]
2016-09-22 04:44:59 +03:00
1. [AltX ](https://www.getaltx.com/about ) [[@pedromduarte ](https://github.com/pedromduarte )]
2019-09-02 20:53:52 +03:00
1. [AMPATH ](https://www.ampathkenya.org/ )[[@AMPATH ](https://github.com/AMPATH ), [@fatmali ](https://github.com/fatmali )]
2016-08-20 01:04:45 +03:00
1. [Apigee ](https://apigee.com ) [[@btallman ](https://github.com/btallman )]
2019-06-08 14:02:19 +03:00
1. [ARGO Labs ](http://www.argolabs.org ) [[@California Data Collaborative ](https://github.com/California-Data-Collaborative )]
2018-12-12 20:31:02 +03:00
1. [ARMEDANGELS ](https://www.armedangels.de ) [[@swiffer ](https://github.com/swiffer )]
2018-08-23 17:07:41 +03:00
1. [Arquivei ](https://www.arquivei.com.br/ ) [[@arquivei ](https://github.com/arquivei )]
2019-04-11 22:16:58 +03:00
1. [Arrive ](https://www.arrive.com/ )
2019-02-14 23:32:22 +03:00
1. [Asana ](https://asana.com/ ) [[@chang ](https://github.com/chang ), [@dima-asana ](https://github.com/dima-asana ), [@jdavidheiser ](https://github.com/jdavidheiser ), [@ricardoandresrojas ](https://github.com/ricardoandresrojas )]
2019-10-03 18:27:18 +03:00
1. [Astronomer ](http://www.astronomer.io ) [[@schnie ](https://github.com/schnie ), [@ashb ](https://github.com/ashb ), [@kaxil ](https://github.com/kaxil ), [@dimberman ](https://github.com/dimberman ), [@andriisoldatenko ](https://github.com/andriisoldatenko ), [@ryw ](https://github.com/ryw ), [@andrewhharmon ](https://github.com/andrewhharmon )]
2016-10-05 16:22:33 +03:00
1. [Auth0 ](https://auth0.com ) [[@sicarul ](https://github.com/sicarul )]
2019-10-24 15:36:36 +03:00
1. [Automattic ](https://automattic.com/ ) [[@anandnalya ](https://github.com/anandnalya ), [@bperson ](https://github.com/bperson ), [@khrol ](https://github.com/Khrol ), [@xyu ](https://github.com/xyu )]
2017-12-12 10:15:53 +03:00
1. [Away ](https://awaytravel.com ) [[@trunsky ](https://github.com/trunsky )]
2018-05-16 04:51:22 +03:00
1. [Azri Solutions ](http://www.azrisolutions.com/ ) [[@userimack ](https://github.com/userimack )]
2019-06-20 08:45:21 +03:00
1. [Bagelcode ](https://site.bagelcode.com/ )
2017-12-27 22:32:43 +03:00
1. [BalanceHero ](http://truebalance.io/ ) [[@swalloow ](https://github.com/swalloow )]
2018-04-20 04:33:33 +03:00
1. [Banco de Formaturas ](https://www.bancodeformaturas.com.br ) [[@guiligan ](https://github.com/guiligan )]
2016-10-27 21:48:16 +03:00
1. [BandwidthX ](http://www.bandwidthx.com ) [[@dineshdsharma ](https://github.com/dineshdsharma )]
2019-01-07 01:02:21 +03:00
1. [Basetis ](http://www.basetis.com )
2018-07-26 05:13:46 +03:00
1. [BBM ](https://www.bbm.com/ )
2019-07-08 20:27:26 +03:00
1. [Beamly ](https://www.beamly.com/ ) [[@christopheralcock ](https://github.com/christopheralcock )]
2019-03-26 04:16:13 +03:00
1. [Beeswax ](https://beeswax.com/ )
2016-08-12 03:55:46 +03:00
1. [Bellhops ](https://github.com/bellhops )
2018-05-10 21:05:04 +03:00
1. [BelugaDB ](https://belugadb.com ) [[@fabio-nukui ](https://github.com/fabio-nukui ) & [@joao-sallaberry ](http://github.com/joao-sallaberry ) & [@lucianoviola ](https://github.com/lucianoviola ) & [@tmatuki ](https://github.com/tmatuki )]
2018-10-24 18:49:12 +03:00
1. [Betterment ](https://www.betterment.com/ ) [[@betterment ](https://github.com/Betterment )]
2019-09-02 22:35:24 +03:00
1. [Bexs Bank ](https://www.bexs.com.br/en ) [[@felipefb ](https://github.com/felipefb ) & [@ilarsen ](https://github.com/ishvann )]
2019-09-09 13:55:53 +03:00
1. [BigQuant ](https://bigquant.com/ ) [[@bigquant ](https://github.com/bigquant )]
2019-12-10 23:45:22 +03:00
1. [Birdz by Veolia ](https://www.birdz.com/en/ ) [[@benjamingrenier ](https://github.com/benjamingrenier )]
2016-10-20 17:55:47 +03:00
1. [BlaBlaCar ](https://www.blablacar.com ) [[@puckel ](https://github.com/puckel ) & [@wmorin ](https://github.com/wmorin )]
2019-05-16 22:30:35 +03:00
1. [Blacklane ](https://www.blacklane.com ) [[@serkef ](https://github.com/serkef )]
2016-10-04 01:56:25 +03:00
1. [Bloc ](https://www.bloc.io ) [[@dpaola2 ](https://github.com/dpaola2 )]
2019-01-09 00:57:21 +03:00
1. [Bloomberg ](https://www.techatbloomberg.com ) [[@dimberman ](https://github.com/dimberman )]
2018-05-16 04:51:22 +03:00
1. [Blue Yonder ](http://www.blue-yonder.com ) [[@blue-yonder ](https://github.com/blue-yonder )]
2017-08-07 21:39:10 +03:00
1. [BlueApron ](https://www.blueapron.com ) [[@jasonjho ](https://github.com/jasonjho ) & [@matthewdavidhauser ](https://github.com/matthewdavidhauser )]
2018-02-20 20:07:11 +03:00
1. [Bluecore ](https://www.bluecore.com ) [[@JLDLaughlin ](https://github.com/JLDLaughlin )]
2019-09-03 15:57:47 +03:00
1. [Bluekiri ](https://bluekiri.com ) [[@Bluekiri ](https://github.com/bluekiri )]
2018-03-08 15:53:12 +03:00
1. [Boda Telecom Suite - CE ](https://github.com/bodastage/bts-ce ) [[@erssebaggala ](https://github.com/erssebaggala ), [@bodastage ](https://github.com/bodastage )]
1. [Bodastage Solutions ](http://bodastage.com ) [[@erssebaggala ](https://github.com/erssebaggala ), [@bodastage ](https://github.com/bodastage )]
2019-03-26 13:17:49 +03:00
1. [Bombora Inc ](https://bombora.com/ ) [[@jeffkpayne ](https://github.com/jeffkpayne ), [@pakelley ](https://github.com/pakelley ), [@dNavalta ](https://github.com/dNavalta ), [@austynh ](https://github.com/austynh ), [@TheOriginalAlex ](https://github.com/TheOriginalAlex )]
2019-06-26 15:08:53 +03:00
1. [Bonial International GmbH ](https://www.bonial.com/ )
2018-04-10 00:50:18 +03:00
1. [Bonnier Broadcasting ](http://www.bonnierbroadcasting.com ) [[@wileeam ](https://github.com/wileeam )]
2018-04-30 17:03:33 +03:00
1. [BounceX ](http://www.bouncex.com ) [[@JoshFerge ](https://github.com/JoshFerge ), [@hudsonrio ](https://github.com/hudsonrio ), [@ronniekritou ](https://github.com/ronniekritou )]
2019-05-06 23:09:03 +03:00
1. [Braintree ](https://www.braintreepayments.com ) [[@coopergillan ](https://github.com/coopergillan ), [@curiousjazz77 ](https://github.com/curiousjazz77 ), [@raymondberg ](https://github.com/raymondberg )]
2018-09-06 22:20:04 +03:00
1. [Branch ](https://branch.io ) [[@sdebarshi ](https://github.com/sdebarshi ), [@dmitrig01 ](https://github.com/dmitrig01 )]
2019-07-11 13:24:53 +03:00
1. [Caesars Entertainment ](https://www.caesars.com )
2017-09-24 22:06:06 +03:00
1. [California Data Collaborative ](https://github.com/California-Data-Collaborative ) powered by [ARGO Labs ](http://www.argolabs.org )
2019-01-28 08:02:49 +03:00
1. [Capital One ](https://www.capitalone.com ) [[@anoopengineer ](https://github.com/anoopengineer )]
2017-09-07 02:51:34 +03:00
1. [Carbonite ](https://www.carbonite.com ) [[@ajbosco ](https://github.com/ajbosco )]
2018-10-09 12:48:28 +03:00
1. [CarLabs ](https://www.carlabs.ai/ ) [[@sganz ](https://github.com/sganz ) & [@odannyc ](https://github.com/odannyc )]
2019-01-15 02:16:20 +03:00
1. [CAVA ](https://www.cava.com ) [[@minh5 ](http://github.com/minh5 ) & [@patchus ](http://github.com/patchus )]
2016-11-23 20:58:12 +03:00
1. [Celect ](http://www.celect.com ) [[@superdosh ](https://github.com/superdosh ) & [@chadcelect ](https://github.com/chadcelect )]
2018-09-06 18:36:43 +03:00
1. [Censys ](https://censys.io ) [[@zakird ](https://github.com/zakird ), [@dadrian ](https://github.com/dadrian ), & [@andrewsardone ](https://github.com/andrewsardone )]
2017-02-19 11:45:07 +03:00
1. [Change.org ](https://www.change.org ) [[@change ](https://github.com/change ), [@vijaykramesh ](https://github.com/vijaykramesh )]
2018-12-31 14:48:49 +03:00
1. [Chartboost ](https://www.chartboost.com ) [[@cgelman ](https://github.com/cgelman ) & [@dclubb ](https://github.com/dclubb )]
2017-05-12 12:35:31 +03:00
1. [Checkr ](https://checkr.com ) [[@tongboh ](https://github.com/tongboh )]
2019-03-31 21:49:38 +03:00
1. [Children's Hospital of Philadelphia Division of Genomic Diagnostics ](http://www.chop.edu/centers-programs/division-genomic-diagnostics ) [[@genomics-geek ](https://github.com/genomics-geek/ )]
2018-04-08 22:50:46 +03:00
1. [Cinimex DataLab ](http://cinimex.ru ) [[@kdubovikov ](https://github.com/kdubovikov )]
2017-02-19 11:45:07 +03:00
1. [City of San Diego ](http://sandiego.gov ) [[@MrMaksimize ](https://github.com/mrmaksimize ), [@andrell81 ](https://github.com/andrell81 ) & [@arnaudvedy ](https://github.com/arnaudvedy )]
2019-07-03 21:03:55 +03:00
1. [City of Toronto ](https://www.toronto.ca/ ) [[@CityofToronto ](https://github.com/CityofToronto ), [@radumas ](https://github.com/radumas )]
2019-10-31 11:51:14 +03:00
1. [ciValue ](https://civalue.com/ ) [[@chencivalue ](https://github.com/chencivalue ), [@YoavGaudin ](https://github.com/YoavGaudin ), [@saleem-boshnak ](https://github.com/saleem-boshnak )]
2018-11-12 23:06:22 +03:00
1. [Civey ](https://civey.com/ ) [[@WesleyBatista ](https://github.com/WesleyBatista )]
2019-03-31 21:49:38 +03:00
1. [Clairvoyant ](https://clairvoyantsoft.com ) [[@shekharv ](https://github.com/shekharv )]
2019-03-05 07:49:12 +03:00
1. [Classmethod, Inc. ](https://classmethod.jp/ ) [[@shoito ](https://github.com/shoito )]
2019-05-28 07:18:43 +03:00
1. [Cleartax ](https://cleartax.in/ ) [[@anks ](https://github.com/anks ) & [@codebuff ](https://github.com/codebuff )]
2016-08-15 01:51:15 +03:00
1. [Clover Health ](https://www.cloverhealth.com ) [[@gwax ](https://github.com/gwax ) & [@vansivallab ](https://github.com/vansivallab )]
2020-03-24 10:09:57 +03:00
1. [Colgate-Palmolive ](https://www.colgatepalmolive.com/ ) [[@fhoda ](https://github.com/fhoda )]
2019-03-31 21:49:38 +03:00
1. [Collectivehealth Inc. ](https://www.collectivehealth.com ) [[@retornam ](https://github.com/retornam )]
2018-09-28 22:03:26 +03:00
1. [Compass ](https://www.compass.com ) [[@wdhorton ](https://github.com/wdhorton )]
2019-05-31 06:52:16 +03:00
1. [ConnectWise ](https://www.connectwise.com/ ) [[@jacobeturpin ](https://github.com/jacobeturpin )]
2017-09-07 02:48:30 +03:00
1. [ContaAzul ](https://www.contaazul.com ) [[@bern4rdelli ](https://github.com/bern4rdelli ), [@renanleme ](https://github.com/renanleme ) & [@sabino ](https://github.com/sabino )]
2016-08-12 03:55:46 +03:00
1. [Cotap ](https://github.com/cotap/ ) [[@maraca ](https://github.com/maraca ) & [@richardchew ](https://github.com/richardchew )]
2018-05-05 20:27:43 +03:00
1. [Craig@Work ](https://www.craigatwork.com )
2019-06-20 14:51:42 +03:00
1. [Crealytics ](https://crealytics.com )
2017-07-14 00:37:55 +03:00
1. [Credit Karma ](https://www.creditkarma.com/ ) [[@preete-dixit-ck ](https://github.com/preete-dixit-ck ) & [@harish-gaggar-ck ](https://github.com/harish-gaggar-ck ) & [@greg-finley-ck ](https://github.com/greg-finley-ck )]
2017-12-23 12:01:40 +03:00
1. [Creditas ](https://www.creditas.com.br ) [[@dcassiano ](https://github.com/dcassiano )]
2018-12-31 14:48:49 +03:00
1. [CreditCards.com ](https://www.creditcards.com/ )[[@vmAggies ](https://github.com/vmAggies ) & [@jay-wallaby ](https://github.com/jay-wallaby )]
2019-07-11 13:16:34 +03:00
1. [Cryptalizer.com ](https://www.cryptalizer.com/ )
2018-03-31 12:25:10 +03:00
1. [Custom Ink ](https://www.customink.com/ ) [[@david-dalisay ](https://github.com/david-dalisay ), [@dmartin11 ](https://github.com/dmartin11 ) & [@mpeteuil ](https://github.com/mpeteuil )]
2019-09-10 23:39:08 +03:00
1. [Cyscale ](https://cyscale.com ) [[@ocical ](https://github.com/ocical )]
2018-08-01 10:30:34 +03:00
1. [Dailymotion ](http://www.dailymotion.com/fr ) [[@germaintanguy ](https://github.com/germaintanguy ) & [@hc ](https://github.com/hc )]
2018-10-08 18:56:38 +03:00
1. [Danamica ](https://www.danamica.dk ) [[@testvinder ](https://github.com/testvinder )]
2017-12-05 01:55:00 +03:00
1. [Data Reply ](https://www.datareply.co.uk/ ) [[@kaxil ](https://github.com/kaxil )]
2018-10-06 23:50:11 +03:00
1. [DataCamp ](https://datacamp.com/ ) [[@dgrtwo ](https://github.com/dgrtwo )]
2018-05-16 04:51:22 +03:00
1. [DataFox ](https://www.datafox.com/ ) [[@sudowork ](https://github.com/sudowork )]
2019-09-13 23:54:09 +03:00
1. [Dentsu Inc. ](http://www.dentsu.com/ ) [[@bryan831 ](https://github.com/bryan831 ) & [@loozhengyuan ](https://github.com/loozhengyuan )]
2017-03-06 04:44:20 +03:00
1. [Digital First Media ](http://www.digitalfirstmedia.com/ ) [[@duffn ](https://github.com/duffn ) & [@mschmo ](https://github.com/mschmo ) & [@seanmuth ](https://github.com/seanmuth )]
2018-10-26 21:41:29 +03:00
1. [DigitalOcean ](https://digitalocean.com/ ) [[@ajbosco ](https://github.com/ajbosco )]
2020-01-06 13:28:24 +03:00
1. [Digitas Pixelpark ](https://www.digitaspixelpark.com/ ) [[@feluelle ](https://github.com/feluelle )]
2018-10-01 09:26:33 +03:00
1. [DoorDash ](https://www.doordash.com/ )
2018-03-21 14:00:29 +03:00
1. [Dotmodus ](http://dotmodus.com ) [[@dannylee12 ](https://github.com/dannylee12 )]
2017-08-21 20:48:19 +03:00
1. [Drivy ](https://www.drivy.com ) [[@AntoineAugusti ](https://github.com/AntoineAugusti )]
2018-11-12 23:06:22 +03:00
1. [Easy Taxi ](http://www.easytaxi.com/ ) [[@caique-lima ](https://github.com/caique-lima ) & [@diraol ](https://github.com/diraol )]
2019-07-16 21:07:47 +03:00
1. [EllisDon ](http://www.ellisdon.com/ ) [[@d2kalra ](https://github.com/d2kalra ) & [@zbasama ](https://github.com/zbasama )]
2019-11-26 19:52:16 +03:00
1. [Endesa ](https://www.endesa.com ) [[@drexpp ](https://github.com/drexpp )]
2018-09-10 23:52:07 +03:00
1. [Enigma ](https://www.enigma.com ) [[@hydrosquall ](https://github.com/hydrosquall )]
2019-11-10 21:06:03 +03:00
1. [Datamaran ](https://www.datamaran.com ) [[@valexharo ](https://github.com/valexharo )]
2018-11-17 10:30:54 +03:00
1. [Etsy ](https://www.etsy.com ) [[@mchalek ](https://github.com/mchalek )]
2017-04-20 04:31:57 +03:00
1. [evo.company ](https://evo.company/ ) [[@orhideous ](https://github.com/orhideous )]
2019-06-06 11:32:27 +03:00
1. [Experity (formerly DocuTAP) ](https://www.experityhealth.com/ ) [[@cloneluke ](https://github.com/cloneluke ) & [@tobyjoliver ](https://github.com/tobyjoliver )]
2018-09-26 19:56:24 +03:00
1. [Fathom Health ](https://www.fathomhealth.co/ )
2019-01-19 00:29:40 +03:00
1. [Firestone Inventing ](https://www.hsmap.com/ ) [[@zihengCat ](https://github.com/zihengCat )]
2018-08-22 23:47:59 +03:00
1. [Flipp ](https://www.flipp.com ) [[@sethwilsonwishabi ](https://github.com/sethwilsonwishabi )]
2018-08-30 17:15:47 +03:00
1. [Format ](https://www.format.com ) [[@format ](https://github.com/4ormat ) & [@jasonicarter ](https://github.com/jasonicarter )]
2020-01-23 15:55:53 +03:00
1. [FreeNow ](https://free-now.com ) [[@freenowtech ](https://github.com/freenowtech )]
2016-08-12 03:55:46 +03:00
1. [FreshBooks ](https://github.com/freshbooks ) [[@DinoCow ](https://github.com/DinoCow )]
2019-10-29 00:32:45 +03:00
1. [Freshworks ](https://www.freshworks.com/ ) [[@shaikshakeel ](https://github.com/shaikshakeel )]
2019-08-29 20:31:16 +03:00
1. [FullContact ](https://github.com/fullcontact )
2019-05-14 15:52:57 +03:00
1. [Fuller, Inc. ](https://en.fuller-inc.com/ ) [[@wutali ](https://github.com/wutali ) & [@sh-tech ](https://github.com/sh-tech )]
2017-10-17 20:54:33 +03:00
1. [Fundera ](https://fundera.com ) [[@andyxhadji ](https://github.com/andyxhadji )]
2019-05-01 17:05:46 +03:00
1. [G Adventures ](https://gadventures.com ) [[@chchtv11 ](https://github.com/chchtv11 ), [@tgumbley ](https://github.com/tgumbley ), [@tomwross ](https://github.com/tomwross )]
2017-09-13 11:13:14 +03:00
1. [GameWisp ](https://gamewisp.com ) [[@tjbiii ](https://github.com/TJBIII ) & [@theryanwalls ](https://github.com/theryanwalls )]
2020-02-16 22:05:26 +03:00
1. [Geekie ](https://www.geekie.com.br ) [[@wolney ](https://github.com/wolney )]
2018-11-08 18:01:18 +03:00
1. [GeneCards ](https://www.genecards.org ) [[@oferze ](https://github.com/oferze )]
2016-08-12 03:55:46 +03:00
1. [Gentner Lab ](http://github.com/gentnerlab ) [[@neuromusic ](https://github.com/neuromusic )]
2018-12-03 18:45:21 +03:00
1. [Get Simpl ](https://getsimpl.com/ ) [[@rootcss ](https://github.com/rootcss )]
2020-01-31 23:35:51 +03:00
1. [GitLab ](https://about.gitlab.com/ ) [[@tayloramurphy ](https://gitlab.com/tayloramurphy ) & [@m_walker ](https://gitlab.com/m_walker )]
2018-10-13 08:36:07 +03:00
1. [Glassdoor ](https://github.com/Glassdoor ) [[@syvineckruyk ](https://github.com/syvineckruyk ) & [@sid88in ](https://github.com/sid88in )]
2017-12-12 10:18:43 +03:00
1. [Global Fashion Group ](http://global-fashion-group.com ) [[@GFG ](https://github.com/GFG )]
2019-03-04 12:37:56 +03:00
1. [GoDataDriven ](https://godatadriven.com/ ) [[@BasPH ](https://github.com/basph ), [@danielvdende ](https://github.com/danielvdende ), [@ffinfo ](https://github.com/ffinfo ), [@Fokko ](https://github.com/Fokko ), [@gglanzani ](https://github.com/gglanzani ), [@hgrif ](https://github.com/hgrif ), [@jrderuiter ](https://github.com/jrderuiter ), [@NielsZeilemaker ](https://github.com/NielsZeilemaker )]
2020-04-02 19:34:14 +03:00
1. [Gojek ](https://gojek.com/ ) [[@gojek ](https://github.com/gojek )]
2017-03-15 15:33:33 +03:00
1. [GovTech GDS ](https://gds-gov.tech ) [[@chrissng ](https://github.com/chrissng ) & [@datagovsg ](https://github.com/datagovsg )]
2019-06-26 15:18:19 +03:00
1. [Grab ](https://www.grab.com/sg/ ) [[@calvintran ](https://github.com/canhtran )]
2018-08-01 10:30:34 +03:00
1. [Gradeup ](https://gradeup.co ) [[@gradeup ](https://github.com/gradeup )]
2017-11-26 21:17:34 +03:00
1. [Grand Rounds ](https://www.grandrounds.com/ ) [[@richddr ](https://github.com/richddr ), [@timz1290 ](https://github.com/timz1290 ), [@wenever ](https://github.com/@wenever ), & [@runongirlrunon ](https://github.com/runongirlrunon )]
2017-04-14 11:33:52 +03:00
1. [Groupalia ](http://es.groupalia.com ) [[@jesusfcr ](https://github.com/jesusfcr )]
2018-04-27 04:47:28 +03:00
1. [Groupon ](https://groupon.com ) [[@stevencasey ](https://github.com/stevencasey )]
2019-07-03 16:46:43 +03:00
1. [Growbots ](https://www.growbots.com/ )[[@exploy ](https://github.com/exploy )]
2019-10-14 11:47:22 +03:00
1. [GSN Games ](https://www.gsngames.com )
2016-08-23 05:43:23 +03:00
1. [Gusto ](https://gusto.com ) [[@frankhsu ](https://github.com/frankhsu )]
2017-01-05 02:00:26 +03:00
1. [Handshake ](https://joinhandshake.com/ ) [[@mhickman ](https://github.com/mhickman )]
2016-08-12 03:55:46 +03:00
1. [Handy ](http://www.handy.com/careers/73115?gh_jid=73115&gh_src=o5qcxn ) [[@marcintustin ](https://github.com/marcintustin ) / [@mtustin-handy ](https://github.com/mtustin-handy )]
2019-08-28 00:54:19 +03:00
1. [happn ](https://www.happn.com ) [[@pcorbel ](https://github.com/pcorbel )]
2018-11-09 16:44:41 +03:00
1. [HAVAN ](https://www.havan.com.br ) [[@botbiz ](https://github.com/botbiz )]
2018-03-02 15:47:51 +03:00
1. [HBC Digital ](http://tech.hbc.com ) [[@tmccartan ](https://github.com/tmccartan ) & [@dmateusp ](https://github.com/dmateusp )]
2017-04-09 16:01:39 +03:00
1. [HBO ](http://www.hbo.com/ )[[@yiwang ](https://github.com/yiwang )]
2018-05-16 04:51:22 +03:00
1. [Healthjump ](http://www.healthjump.com/ ) [[@miscbits ](https://github.com/miscbits )]
2016-11-15 19:00:25 +03:00
1. [HelloFresh ](https://www.hellofresh.com ) [[@tammymendt ](https://github.com/tammymendt ) & [@davidsbatista ](https://github.com/davidsbatista ) & [@iuriinedostup ](https://github.com/iuriinedostup )]
2018-07-26 11:50:39 +03:00
1. [Hipages ](https://www.hipages.com.au/ ) [[@arihantsurana ](https://github.com/arihantsurana )]
2016-08-12 03:55:46 +03:00
1. [Holimetrix ](http://holimetrix.com/ ) [[@thibault-ketterer ](https://github.com/thibault-ketterer )]
2020-03-19 20:33:09 +03:00
1. [HomeToGo ](https://www.hometogo.com/ ) [[@HomeToGo ](https://github.com/hometogo ), [@AurimasGr ](https://github.com/AurimasGr )]
2016-08-12 03:55:46 +03:00
1. [Hootsuite ](https://github.com/hootsuite )
2017-12-05 19:13:47 +03:00
1. [Hostnfly ](https://www.hostnfly.com/ ) [[@CyrilLeMat ](https://github.com/CyrilLeMat ) & [@pierrechopin ](https://github.com/pierrechopin ) & [@alexisrosuel ](https://github.com/alexisrosuel )]
2017-10-23 13:01:30 +03:00
1. [HotelQuickly ](https://github.com/HotelQuickly ) [[@zinuzoid ](https://github.com/zinuzoid )]
2019-07-04 17:19:52 +03:00
1. [Huq Industries ](https://huq.io ) [[@huqindustries ](https://github.com/huq-industries ), [@alepuccetti ](https://github.com/alepuccetti ), [@turbomerl ](https://github.com/turbomerl )]
2018-11-13 12:46:42 +03:00
1. [Iflix ](https://piay.iflix.com ) [[@ChaturvediSulabh ](https://github.com/ChaturvediSulabh )]
2016-11-17 03:26:01 +03:00
1. [IFTTT ](https://www.ifttt.com/ ) [[@apurvajoshi ](https://github.com/apurvajoshi )]
2016-08-17 21:30:40 +03:00
1. [iHeartRadio ](http://www.iheart.com/ )[[@yiwang ](https://github.com/yiwang )]
2017-07-11 21:31:25 +03:00
1. [imgix ](https://www.imgix.com/ ) [[@dclubb ](https://github.com/dclubb )]
2016-08-12 03:55:46 +03:00
1. [ING ](http://www.ing.com/ )
2019-07-13 02:26:55 +03:00
1. [Instacart 🥕 ](http://www.instacart.com/ ) [[@arp1t ](https://github.com/arp1t ) & [@code-sauce ](https://github.com/code-sauce ) & [@jasonlew ](https://github.com/jasonlew ) & [@j4p3 ](https://github.com/j4p3 ) & [@lubert ](https://github.com/lubert ) & [@mmontagna ](https://github.com/mmontagna ) & [@RyanAD ](https://github.com/RyanAD ) & [@zzadeh](https://github.com/zzadeh)]
2018-01-30 15:25:20 +03:00
1. [Intercom ](http://www.intercom.com/ ) [[@fox ](https://github.com/fox ) & [@paulvic ](https://github.com/paulvic )]
2019-04-11 22:17:58 +03:00
1. [Interia ](http://www.interia.pl )
2018-04-20 04:20:31 +03:00
1. [Investorise ](https://investorise.com/ ) [[@svenvarkel ](https://github.com/svenvarkel )]
2019-08-10 09:56:37 +03:00
1. [iS2.co ](https://www.is2.co ) [[@iS2co ](https://github.com/iS2co )]
2016-08-12 03:55:46 +03:00
1. [Jampp ](https://github.com/jampp )
2018-09-14 23:12:27 +03:00
1. [Jeitto ](https://www.jeitto.com.br ) [[@BrennerPablo ](https://github.com/BrennerPablo ) & [@ds-mauri ](https://github.com/ds-mauri )]
2019-04-25 21:13:48 +03:00
1. [Jetlore ](http://www.jetlore.com/ ) [[@bderose ](https://github.com/bderose )]
2018-01-25 02:39:13 +03:00
1. [JobTeaser ](https://www.jobteaser.com ) [[@stefani75 ](https://github.com/stefani75 ) & [@knil-sama ](https://github.com/knil-sama )]
2019-04-08 12:04:20 +03:00
1. [JULO ](https://www.julo.co.id/ ) [[@sepam ](https://github.com/sepam ) & [@tenapril ](https://github.com/tenapril ) & [@verzqy ](https://github.com/verzqy )]
2018-04-08 21:27:45 +03:00
1. [Kalibrr ](https://www.kalibrr.com/ ) [[@charlesverdad ](https://github.com/charlesverdad )]
2019-06-28 00:04:47 +03:00
1. [Kargo ](https://kargo.com ) [[@chaithra-yenikapati ](https://github.com/chaithra-yenikapati ), [@akarsh3007 ](https://github.com/akarsh3007 ) & [@dineshanchan ](https://github.com/dineshanchan )]
2018-02-09 00:38:02 +03:00
1. [Karmic ](https://karmiclabs.com ) [[@hyw ](https://github.com/hyw )]
2018-08-24 19:38:47 +03:00
1. [King ](https://king.com ) [[@nathadfield ](https://github.com/nathadfield )]
2019-10-02 23:10:45 +03:00
1. [King Abdullah Petroleum Studies and Research Center(KAPSARC) ](https://github.com/kapsarc ) [[@saianupkumarp ](https://github.com/saianupkumarp )]
2016-08-12 03:55:46 +03:00
1. [Kiwi.com ](https://kiwi.com/ ) [[@underyx ](https://github.com/underyx )]
1. [Kogan.com ](https://github.com/kogan ) [[@geeknam ](https://github.com/geeknam )]
2019-03-14 06:02:12 +03:00
1. [Korbit ](https://www.korbit.co.kr/ ) [[@jensenity ](https://github.com/jensenity )]
2018-07-09 12:07:03 +03:00
1. [KPN B.V. ](https://www.kpn.com/ ) [[@biyanisuraj ](https://github.com/biyanisuraj ) & [@gmic ](https://github.com/gmic )]
2019-09-02 20:51:53 +03:00
1. [Kroton Educacional ](http://www.kroton.com.br/ )
2016-12-20 16:28:32 +03:00
1. [Lemann Foundation ](http://fundacaolemann.org.br ) [[@fernandosjp ](https://github.com/fernandosjp )]
2018-12-17 22:26:21 +03:00
1. [LeMans Corporation ](https://www.parts-unlimited.com/ ) [[@alloydwhitlock ](https://github.com/alloydwhitlock )] & [[@tinyrye ](https://github.com/tinyrye )]
2016-08-12 03:55:46 +03:00
1. [LendUp ](https://www.lendup.com/ ) [[@lendup ](https://github.com/lendup )]
2017-06-23 05:31:25 +03:00
1. [LetsBonus ](http://www.letsbonus.com ) [[@jesusfcr ](https://github.com/jesusfcr ) & [@OpringaoDoTurno ](https://github.com/OpringaoDoTurno )]
2018-08-02 22:38:39 +03:00
1. [Liberty Global ](https://www.libertyglobal.com/ ) [[@LibertyGlobal ](https://github.com/LibertyGlobal/ )]
2016-08-31 07:07:59 +03:00
1. [liligo ](http://liligo.com/ ) [[@tromika ](https://github.com/tromika )]
2016-08-12 03:55:46 +03:00
1. [LingoChamp ](http://www.liulishuo.com/ ) [[@haitaoyao ](https://github.com/haitaoyao )]
2019-09-03 15:57:47 +03:00
1. [Logitravel Group ](https://www.logitravel.com/ )
2019-01-15 02:19:53 +03:00
1. [Los Angeles Times ](http://www.latimes.com/ ) [[@standyro ](https://github.com/standyro )]
2019-07-03 15:38:24 +03:00
1. [LokSuvidha ](http://loksuvidha.com/ ) [[@saurabhwahile ](https://github.com/saurabhwahile )]
2016-08-12 03:55:46 +03:00
1. [Lucid ](http://luc.id ) [[@jbrownlucid ](https://github.com/jbrownlucid ) & [@kkourtchikov ](https://github.com/kkourtchikov )]
2016-11-17 03:26:01 +03:00
1. [Lumos Labs ](https://www.lumosity.com/ ) [[@rfroetscher ](https://github.com/rfroetscher/ ) & [@zzztimbo ](https://github.com/zzztimbo/ )]
2019-04-28 09:29:54 +03:00
1. [Lyft ](https://www.lyft.com/ ) [[@feng-tao ](https://github.com/feng-tao ), [@milton0825 ](https://github.com/milton0825 ), [@astahlman ](https://github.com/astahlman ),
2019-05-02 23:42:40 +03:00
[@youngyjd ](https://github.com/youngyjd ), [@ArgentFalcon ](https://github.com/ArgentFalcon )]
2018-05-29 22:38:08 +03:00
1. [M4U ](https://www.m4u.com.br/ ) [[@msantino ](https://github.com/msantino )]
2016-11-03 08:33:41 +03:00
1. [Madrone ](http://madroneco.com/ ) [[@mbreining ](https://github.com/mbreining ) & [@scotthb ](https://github.com/scotthb )]
2016-09-01 21:09:36 +03:00
1. [Markovian ](https://markovian.com/ ) [[@al-xv ](https://github.com/al-xv ), [@skogsbaeck ](https://github.com/skogsbaeck ), [@waltherg ](https://github.com/waltherg )]
2017-01-13 22:00:55 +03:00
1. [Mercadoni ](https://www.mercadoni.com.co ) [[@demorenoc ](https://github.com/demorenoc )]
2017-07-14 01:07:05 +03:00
1. [Mercari ](http://www.mercari.com/ ) [[@yu-iskw ](https://github.com/yu-iskw )]
2016-09-11 19:17:12 +03:00
1. [MFG Labs ](https://github.com/MfgLabs )
2018-05-16 04:51:22 +03:00
1. [MiNODES ](https://www.minodes.com ) [[@dice89 ](https://github.com/dice89 ), [@diazcelsa ](https://github.com/diazcelsa )]
2018-08-20 21:11:48 +03:00
1. [Modernizing Medicine ](https://www.modmed.com/ )[[@kehv1n ](https://github.com/kehv1n ), [@dalupus ](https://github.com/dalupus )]
2018-02-28 00:30:09 +03:00
1. [Multiply ](https://www.multiply.com ) [[@nrhvyc ](https://github.com/nrhvyc )]
2019-09-17 01:20:51 +03:00
1. [National Bank of Canada ](https://nbc.ca ) [[@brilhana ](https://github.com/brilhana )]
2018-12-21 02:37:28 +03:00
1. [Neoway ](https://www.neoway.com.br/ ) [[@neowaylabs ](https://github.com/orgs/NeowayLabs/people )]
2016-08-12 03:55:46 +03:00
1. [Nerdwallet ](https://www.nerdwallet.com )
2017-06-10 05:40:52 +03:00
1. [New Relic ](https://www.newrelic.com ) [[@marcweil ](https://github.com/marcweil )]
2018-01-05 13:25:58 +03:00
1. [Newzoo ](https://www.newzoo.com ) [[@newzoo-nexus ](https://github.com/newzoo-nexus )]
2018-12-21 02:37:28 +03:00
1. [NEXT Trucking ](https://www.nexttrucking.com/ ) [[@earthmancash2 ](https://github.com/earthmancash2 ), [@kppullin ](https://github.com/kppullin )]
2017-08-30 07:01:07 +03:00
1. [Nextdoor ](https://nextdoor.com ) [[@SivaPandeti ](https://github.com/SivaPandeti ), [@zshapiro ](https://github.com/zshapiro ) & [@jthomas123 ](https://github.com/jthomas123 )]
2019-01-11 09:31:59 +03:00
1. [Nine ](https://nine.com.au ) [[@TheZepto ](https://github.com/TheZepto )]
2018-05-28 17:11:58 +03:00
1. [OdysseyPrime ](https://www.goprime.io/ ) [[@davideberdin ](https://github.com/davideberdin )]
2016-09-30 01:45:36 +03:00
1. [OfferUp ](https://offerupnow.com )
2016-12-22 04:20:51 +03:00
1. [OneFineStay ](https://www.onefinestay.com ) [[@slangwald ](https://github.com/slangwald )]
2017-02-09 23:05:28 +03:00
1. [Open Knowledge International ](https://okfn.org ) [@vitorbaptista ](https://github.com/vitorbaptista )
2019-06-13 08:49:15 +03:00
1. [Optum ](https://www.optum.com/ ) - [UnitedHealthGroup ](https://www.unitedhealthgroup.com/ ) [[@hiteshrd ](https://github.com/hiteshrd )]
2019-05-18 09:45:41 +03:00
1. [Outcome Health ](https://www.outcomehealth.com/ ) [[@mikethoun ](https://github.com/mikethoun ), [@rolandotribo ](https://github.com/rolandotribo )]
2018-02-02 04:17:18 +03:00
1. [Overstock ](https://www.github.com/overstock ) [[@mhousley ](https://github.com/mhousley ) & [@mct0006 ](https://github.com/mct0006 )]
2019-07-03 15:36:00 +03:00
1. [OVH ](https://www.ovh.com ) [[@ncrocfer ](https://github.com/ncrocfer ) & [@anthonyolea ](https://github.com/anthonyolea )]
2019-06-08 14:02:19 +03:00
1. [Pagar.me ](https://pagar.me/ ) [[@pagarme ](https://github.com/pagarme )]
2019-01-12 22:46:13 +03:00
1. [Palo Alto Networks ](https://www.paloaltonetworks.com/ ) [[@PaloAltoNetworks ](https://github.com/PaloAltoNetworks )]
2018-02-16 12:49:25 +03:00
1. [Pandora Media ](https://www.pandora.com/ ) [[@Acehaidrey ](https://github.com/Acehaidrey ) & [@wolfier ](https://github.com/wolfier )]
2019-08-28 00:54:19 +03:00
1. [PayFit ](https://payfit.com ) [[@pcorbel ](https://github.com/pcorbel )]
2017-09-15 00:16:17 +03:00
1. [PAYMILL ](https://www.paymill.com/ ) [[@paymill ](https://github.com/paymill ) & [@matthiashuschle ](https://github.com/matthiashuschle )]
2017-08-31 04:17:11 +03:00
1. [PayPal ](https://www.paypal.com/ ) [[@r39132 ](https://github.com/r39132 ) & [@jhsenjaliya ](https://github.com/jhsenjaliya )]
2019-09-10 09:27:16 +03:00
1. [Pecan ](https://www.pecan.ai ) [[@ohadmata ](https://github.com/ohadmata )]
2018-02-16 12:49:25 +03:00
1. [Pernod-Ricard ](https://www.pernod-ricard.com/ ) [[@romain-nio ](https://github.com/romain-nio )]
2018-02-01 12:04:07 +03:00
1. [Plaid ](https://www.plaid.com/ ) [[@plaid ](https://github.com/plaid ), [@AustinBGibbons ](https://github.com/AustinBGibbons ) & [@jeeyoungk ](https://github.com/jeeyoungk )]
2018-05-16 04:51:22 +03:00
1. [Playbuzz ](https://www.playbuzz.com/ ) [[@clintonboys ](https://github.com/clintonboys ) & [@dbn ](https://github.com/dbn )]
2018-02-12 19:28:05 +03:00
1. [PMC ](https://pmc.com/ ) [[@andrewm4894 ](https://github.com/andrewm4894 )]
2018-11-29 07:06:59 +03:00
1. [Poshmark ](https://www.poshmark.com )
2016-08-12 03:55:46 +03:00
1. [Postmates ](http://www.postmates.com ) [[@syeoryn ](https://github.com/syeoryn )]
2019-07-12 18:42:52 +03:00
1. [Premise ](http://www.premise.com ) [[@jmccallum-premise ](https://github.com/jmccallum-premise )]
2017-05-12 12:53:14 +03:00
1. [Pronto Tools ](http://www.prontotools.io/ ) [[@zkan ](https://github.com/zkan ) & [@mesodiar ](https://github.com/mesodiar )]
2019-07-18 16:44:08 +03:00
1. [proton.ai ](https://proton.ai/ ) [[@prmsolutions ](https://github.com/prmsolutions )]
2018-05-08 22:49:16 +03:00
1. [PubNub ](https://pubnub.com ) [[@jzucker2 ](https://github.com/jzucker2 )]
2019-01-15 02:16:20 +03:00
1. [PXYData ](https://www.pxydata.com ) [[@patchus ](http://github.com/patchus )]
2018-03-26 22:18:23 +03:00
1. [Qplum ](https://qplum.co ) [[@manti ](https://github.com/manti )]
2018-05-08 21:15:17 +03:00
1. [Quantopian ](https://www.quantopian.com/ ) [[@eronarn ](http://github.com/eronarn )]
2016-08-12 03:55:46 +03:00
1. [Qubole ](https://qubole.com ) [[@msumit ](https://github.com/msumit )]
2017-12-30 21:08:42 +03:00
1. [Quizlet ](https://quizlet.com ) [[@quizlet ](https://github.com/quizlet )]
2017-05-16 11:27:37 +03:00
1. [Quora ](https://www.quora.com/ )
2020-03-14 00:14:45 +03:00
1. [Rakuten ](https://www.rakuten.com )
2019-08-17 21:25:10 +03:00
1. [Raízen ](https://www.raizen.com.br/ ) [[@rudlac ](https://github.com/rudlac ) & [@guifneves ](https://github.com/guifneves )]
2020-01-23 17:48:39 +03:00
1. [Rapido ](https://rapido.bike/ ) [[@ChethanUK ](https://github.com/ChethanUK )]
2018-06-19 01:44:12 +03:00
1. [REA Group ](https://www.rea-group.com/ )
2018-05-03 22:23:09 +03:00
1. [Reddit ](https://www.reddit.com/ ) [[@reddit ](https://github.com/reddit/ )]
2019-04-02 22:33:09 +03:00
1. [Reverb ](https://reverb.com )[[@reverbdotcom ](https://github.com/reverbdotcom )]
2019-07-08 07:03:15 +03:00
1. [Revolut ](https://www.revolut.com/ ) [[@sztanko ](https://github.com/sztanko ) & [@nautilus28 ](https://github.com/nautilus28 )]
2017-05-04 23:19:24 +03:00
1. [Robinhood ](https://robinhood.com ) [[@vineet-rh ](https://github.com/vineet-rh )]
2016-08-17 21:32:28 +03:00
1. [Scaleway ](https://scaleway.com ) [[@kdeldycke ](https://github.com/kdeldycke )]
2019-06-19 22:14:13 +03:00
1. [Seasoned ](https://www.seasoned.co/ ) [[@joshuacano ](https://github.com/joshuacano )] & [[@mmyers ](https://github.com/mmyers5 )] & [[@tjward ](https://github.com/tjward )]
2019-05-15 19:52:23 +03:00
1. [Secret Escapes ](https://www.secretescapes.com ) [[@secretescapes ](https://github.com/secretescapes )]
2019-02-12 08:17:28 +03:00
1. [Semantics3 ](https://www.semantics3.com ) [[@abishekk92 ](https://github.com/abishekk92 )]
2016-08-12 03:55:46 +03:00
1. [Sense360 ](https://github.com/Sense360 ) [[@kamilmroczek ](https://github.com/KamilMroczek )]
2019-08-02 07:22:10 +03:00
1. [Sentry.io ](https://www.sentry.io ) [[@tiopi ](https://github.com/tiopi )]
2020-02-14 10:41:02 +03:00
1. [ShopBack ](https://www.shopback.sg/ ) [[@shopback ](https://github.com/shopback )]
2016-12-28 23:32:03 +03:00
1. [Shopkick ](https://shopkick.com/ ) [[@shopkick ](https://github.com/shopkick )]
2016-08-12 03:55:46 +03:00
1. [Sidecar ](https://hello.getsidecar.com/ ) [[@getsidecar ](https://github.com/getsidecar )]
1. [SimilarWeb ](https://www.similarweb.com/ ) [[@similarweb ](https://github.com/similarweb )]
2019-05-08 13:26:44 +03:00
1. [Skyscanner ](https://www.skyscanner.net/ ) [[@skyscanner ](https://github.com/Skyscanner )]
2016-08-12 03:55:46 +03:00
1. [SmartNews ](https://www.smartnews.com/ ) [[@takus ](https://github.com/takus )]
2019-04-15 02:20:10 +03:00
1. [SnapTravel ](https://www.snaptravel.com/ )
2018-02-09 15:25:56 +03:00
1. [SocialCops ](https://www.socialcops.com/ ) [[@vinayak-mehta ](https://github.com/vinayak-mehta ) & [@sharky93 ](https://github.com/sharky93 )]
2018-12-17 02:45:12 +03:00
1. [Société générale ](https://www.societegenerale.fr/ ) [[@medmrgh ](https://github.com/medmrgh ) & [@s83 ](https://github.com/s83 )]
2018-05-12 10:04:52 +03:00
1. [Spotahome ](https://www.spotahome.com/ ) [[@spotahome ](https://github.com/spotahome )]
2019-01-25 00:15:34 +03:00
1. [SpotHero ](https://github.com/spothero ) [[@benjigoldberg ](https://github.com/benjigoldberg )]
2016-10-26 20:25:18 +03:00
1. [Spotify ](https://github.com/spotify ) [[@znichols ](https://github.com/znichols )]
2018-12-31 14:48:49 +03:00
1. [Square ](https://squareup.com/ )
2016-11-15 21:14:46 +03:00
1. [Stackspace ](https://beta.stackspace.io/ )
2019-06-06 10:22:02 +03:00
1. [StoneCo ](https://www.stone.co ) [[@lgwacker ](https://github.com/lgwacker )]
2018-10-26 20:18:25 +03:00
1. [Strava ](https://strava.com ) [[@strava ](https://github.com/strava ), [@dhuang ](https://github.com/dhuang ) & [@liamstewart ](https://github.com/liamstewart )]
2017-08-07 21:39:10 +03:00
1. [Stripe ](https://stripe.com ) [[@jbalogh ](https://github.com/jbalogh )]
2018-07-27 22:39:24 +03:00
1. [Strongmind ](https://www.strongmind.com ) [[@tomchapin ](https://github.com/tomchapin ) & [@wongstein ](https://github.com/wongstein )]
2018-10-22 23:14:44 +03:00
1. [Surfline ](https://www.surfline.com/ ) [[@jawang35 ](https://github.com/jawang35 )]
2018-12-31 14:48:49 +03:00
1. [T2 Systems ](http://t2systems.com ) [[@unclaimedpants ](https://github.com/unclaimedpants )]
2017-04-28 23:10:23 +03:00
1. [Tails.com ](https://tails.com/ ) [[@alanmcruickshank ](https://github.com/alanmcruickshank )]
2018-11-27 10:20:45 +03:00
1. [TEK ](https://www.tek.fi/en ) [[@telac ](https://github.com/telac )]
2019-05-07 18:31:08 +03:00
1. [Telefonica Innovation Alpha ](https://www.alpha.company/ ) [[@Alpha-Health ](https://github.com/Alpha-health )]
2019-03-26 13:15:30 +03:00
1. [Telia Company ](https://www.teliacompany.com/en )
2020-03-02 21:14:28 +03:00
1. [Ternary Data ](https://ternarydata.com/ ) [[@mhousley ](https://github.com/mhousley ), [@JoeReis ](https://github.com/JoeReis )]
2018-09-25 19:14:03 +03:00
1. [Tesla ](https://www.tesla.com/ ) [[@thoralf-gutierrez ](https://github.com/thoralf-gutierrez )]
2018-10-06 23:48:48 +03:00
1. [The Home Depot ](https://www.homedepot.com/ )[[@apekshithr ](https://github.com/apekshithr )]
2018-08-25 19:32:01 +03:00
1. [THE ICONIC ](https://www.theiconic.com.au/ ) [[@revathijay ](https://github.com/revathijay )] [[@ilikedata ](https://github.com/ilikedata )]
2018-02-08 23:39:28 +03:00
1. [Thinking Machines ](https://thinkingmachin.es ) [[@marksteve ](https://github.com/marksteve )]
2018-03-26 22:32:48 +03:00
1. [Thinknear ](https://www.thinknear.com/ ) [[@d3cay1 ](https://github.com/d3cay1 ), [@ccson ](https://github.com/ccson ), & [@ababian ](https://github.com/ababian )]
2018-10-06 23:49:21 +03:00
1. [ThoughtWorks ](https://www.thoughtworks.com/ ) [[@sann3 ](https://github.com/sann3 )]
2016-08-12 03:55:46 +03:00
1. [Thumbtack ](https://www.thumbtack.com/ ) [[@natekupp ](https://github.com/natekupp )]
2017-05-16 11:27:37 +03:00
1. [Tictail ](https://tictail.com/ )
2018-02-24 17:51:34 +03:00
1. [Tile ](https://tile.com/ ) [[@ranjanmanish ](https://github.com/ranjanmanish )]
2019-01-28 01:03:09 +03:00
1. [Tinder ](https://tinder.com/ ) [[@kbendick ](https://github.com/kbendick )]
2020-02-28 13:31:44 +03:00
1. [Tink ](https://tink.com/ ) [[@tink-ab ](https://github.com/tink-ab )]
2019-11-21 01:37:00 +03:00
1. [TokenAnalyst ](https://github.com/tokenanalyst ) [[@simonohanlon101 ](https://github.com/simonohanlon101 ), [@ankitchiplunkar ](https://github.com/ankitchiplunkar ), [@sidshekhar ](https://github.com/sidshekhar ), [@sp6pe ](https://github.com/sp6pe )]
2019-03-31 21:49:38 +03:00
1. [Tokopedia ](https://www.tokopedia.com/ ) [[@topedmaria ](https://github.com/topedmaria )]
2019-04-29 20:51:16 +03:00
1. [Trocafone ](https://www.trocafone.com/ ) [[@idontdomath ](https://github.com/idontdomath ) & [@gseva ](https://github.com/gseva ) & [@ordonezf ](https://github.com/ordonezf ) & [@PalmaLeandro ](https://github.com/PalmaLeandro )]
2018-05-01 23:07:47 +03:00
1. [Twine Labs ](https://www.twinelabs.com/ ) [[@ivorpeles ](https://github.com/ivorpeles )]
2018-08-20 16:14:22 +03:00
1. [Twitter ](https://www.twitter.com/ ) [[@aoen ](https://github.com/aoen )]
2018-01-02 18:32:37 +03:00
1. [Ubisoft ](https://www.ubisoft.com/ ) [[@Walkoss ](https://github.com/Walkoss )]
2019-12-19 07:56:33 +03:00
1. [Udacity ](https://www.udacity.com/ ) [[@dandikunited ](https://github.com/DandikUnited ), [@simon-uc ](https://github.com/simon-uc )]
2017-05-30 21:58:51 +03:00
1. [United Airlines ](https://www.united.com/ ) [[@ilopezfr ](https://github.com/ilopezfr )]
2018-10-26 20:18:25 +03:00
1. [Upsight ](https://www.upsight.com )
2018-11-28 20:52:09 +03:00
1. [VeeR VR ](https://veer.tv ) [[@pishilong ](https://github.com/pishilong )]
2019-03-07 17:09:05 +03:00
1. [Veikkaus ](https://www.veikkaus.fi ) [[@hixus ](https://github.com/hixus )]
2016-08-31 07:04:03 +03:00
1. [Vente-Exclusive.com ](http://www.vente-exclusive.com/ ) [[@alexvanboxel ](https://github.com/alexvanboxel )]
2018-03-01 10:37:14 +03:00
1. [Vevo ](https://www.vevo.com/ ) [[@csetiawan ](https://github.com/csetiawan ) & [@jerrygillespie ](https://github.com/jerrygillespie )]
2018-07-26 05:13:46 +03:00
1. [Vidio ](https://www.vidio.com/ )
2018-08-17 09:58:12 +03:00
1. [Ville de Montréal ](http://ville.montreal.qc.ca/ )[@VilledeMontreal ](https://github.com/VilledeMontreal/ )]
2016-12-31 22:05:41 +03:00
1. [Vnomics ](https://github.com/vnomics ) [[@lpalum ](https://github.com/lpalum )]
2019-09-26 12:46:32 +03:00
1. [Walmart Labs ](https://www.walmartlabs.com ) [[@bharathpalaksha ](https://github.com/bharathpalaksha ), [@vipul007ravi ](https://github.com/vipul007ravi )]
2019-01-10 02:04:18 +03:00
1. [Waze ](https://www.waze.com ) [[@waze ](https://github.com/wazeHQ )]
2016-08-15 01:51:15 +03:00
1. [WePay ](http://www.wepay.com ) [[@criccomini ](https://github.com/criccomini ) & [@mtagle ](https://github.com/mtagle )]
2019-04-01 02:46:21 +03:00
1. [WeTransfer ](https://github.com/WeTransfer ) [[@coredipper ](https://github.com/coredipper ) & [@higee ](https://github.com/higee ) & [@azclub ](https://github.com/azclub )]
2016-08-20 02:38:37 +03:00
1. [Whistle Labs ](http://www.whistle.com ) [[@ananya77041 ](https://github.com/ananya77041 )]
2020-03-04 00:39:23 +03:00
1. [Wildlifestudios ](https://wildlifestudios.com/ )
2016-10-01 04:54:01 +03:00
1. [WiseBanyan ](https://wisebanyan.com/ )
2017-08-07 21:39:10 +03:00
1. [Wooga ](https://www.wooga.com/ )
2019-12-02 16:22:51 +03:00
1. [Wrike ](https://www.wrike.com ) [[@eliseealex ](https://github.com/eliseealex ) & [teoretic6 ](https://github.com/Teoretic6 )]
2019-03-28 18:26:23 +03:00
1. [Xero ](https://www.xero.com/ ) [[@yan9yu ](https://github.com/yan9yu ) & [adamantnz ](https://github.com/adamantnz/ )]
2018-05-17 18:07:20 +03:00
1. [Xoom ](https://www.xoom.com/ )
2017-08-07 21:39:10 +03:00
1. [Yahoo! ](https://www.yahoo.com/ )
2018-06-01 19:46:45 +03:00
1. [Yieldr ](https://www.yieldr.com/ ) [[@ggeorgiadis ](https://github.com/ggeorgiadis )]
2016-08-15 01:51:15 +03:00
1. [Zapier ](https://www.zapier.com ) [[@drknexus ](https://github.com/drknexus ) & [@statwonk ](https://github.com/statwonk )]
2019-03-22 01:59:49 +03:00
1. [Zego ](https://www.zego.com/ ) [[@ruimffl ](https://github.com/ruimffl ), [@james-welly ](https://github.com/james-welly ), [@ken-payne ](https://github.com/ken-payne )]
2016-08-12 03:55:46 +03:00
1. [Zendesk ](https://www.github.com/zendesk )
2016-08-19 10:10:57 +03:00
1. [Zenly ](https://zen.ly ) [[@cerisier ](https://github.com/cerisier ) & [@jbdalido ](https://github.com/jbdalido )]
2017-08-30 07:05:00 +03:00
1. [Zymergen ](https://www.zymergen.com/ )
2019-06-23 21:15:26 +03:00
1. [Zynga ](https://www.zynga.com )
2015-07-22 04:02:15 +03:00
2018-09-06 21:57:15 +03:00
## Who Maintains Apache Airflow?
2018-08-06 04:09:14 +03:00
2019-01-05 17:05:25 +03:00
Airflow is the work of the [community ](https://github.com/apache/airflow/graphs/contributors ),
2018-08-06 04:09:14 +03:00
but the [core committers/maintainers ](https://people.apache.org/committers-by-project.html#airflow )
are responsible for reviewing and merging PRs as well as steering conversation around new feature requests.
If you would like to become a maintainer, please review the Apache Airflow
[committer requirements ](https://cwiki.apache.org/confluence/display/AIRFLOW/Committers ).
2019-10-18 22:18:44 +03:00
## Can I use the Apache Airflow logo in my presentation?
Yes! Be sure to abide by the Apache Foundation [trademark policies ](https://www.apache.org/foundation/marks/#books ) and the Apache Airflow [Brandbook ](https://cwiki.apache.org/confluence/display/AIRFLOW/Brandbook ). The most up to date logos are found in [this repo ](/docs/img/logos ) and on the Apache Software Foundation [website ](https://www.apache.org/logos/about.html ).
2015-09-17 20:33:59 +03:00
## Links
2015-07-22 04:02:15 +03:00
2020-03-30 09:20:41 +03:00
- [Documentation ](https://airflow.apache.org/docs/stable/ )
2018-09-11 00:30:35 +03:00
- [Chat ](https://apache-airflow-slack.herokuapp.com/ )
2018-08-01 10:50:23 +03:00
- [More ](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Links )