Last active
May 28, 2022 04:08
-
-
Save kvnkho/7afe899c79276cb30ba45d61525675ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Prefect 1.0 | |
| @task | |
| def get_today(): | |
| return datetime.date.today() | |
| with Flow("basic") as flow: | |
| today = get_today() | |
| e = extract(today) | |
| t = transform(e) | |
| l = load(t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment