Live data from Hacker News

Viewing profile — Rickster35

Rickster35

HN member
Joined
Thu, Jun 29, 2023, 11:26 AM UTC
HN karma
3
Public activity
2 items

About Rickster35

No profile information was provided.

Recent public activity

  1. 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…

  2. 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…