Skip to content

Instantly share code, notes, and snippets.

@kapilgarg
Created January 15, 2024 09:55
Show Gist options
  • Save kapilgarg/d6aced386ab2fa1826d398b5f66b7716 to your computer and use it in GitHub Desktop.
Save kapilgarg/d6aced386ab2fa1826d398b5f66b7716 to your computer and use it in GitHub Desktop.
from airflow.decorators import task
@task
def create_file():
with open(r"airflow.txt",'w') as f:
f.write("this is a test")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment