Created
May 31, 2022 05:53
-
-
Save kvnkho/d84ac92df09a3cea02c59de9b38cdff8 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 2.0 | |
| @flow | |
| def get_item(): | |
| e = extract().result() # returns [1,2,3] | |
| e.pop(0) | |
| t = transform(e[1]) | |
| l = load(t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment