Viewing profile — Rickster35
Rickster35
HN member- Joined
- Thu, Jun 29, 2023, 11:26 AM UTC
- HN karma
- 3
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About Rickster35
No profile information was provided.
Recent public activity
-
comment
Comment #42713700
According to the docs, | is syntactic sugar for the .pipe method. pipeline = task(get_data, branch=True).pipe( task(step1, workers=20)).pipe( task(step2, workers=20)).pipe( task(st…
-
comment
Comment #42711416
Yeah, this seems neatest if you don't like line breaks pipeline = ( task(get_data, branch=True) | task(step1, workers=20) | task(step2, workers=20) | task(step3, workers=20, multip…