Can't import Airflow plugins - Stack Overflow
stackoverflow.com › questions › 43907813May 11, 2017 · from airflow.operators import MyFirstOperator According to the airflow article on plugins, it should be: from airflow.operators.my_first_plugin import MyFirstOperator If that doesn't work try: from airflow.operators.my_operators import MyFirstOperator If that doesn't work, check your web server log on startup for more information.