<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: Rickster35</title><link>https://news.ycombinator.com/user?id=Rickster35</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 14 Apr 2026 21:16:43 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Rickster35" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Rickster35 in "Show HN: Pyper – Concurrent Python Made Simple"]]></title><description><![CDATA[
<p>According to the docs, | is syntactic sugar for the .pipe method.<p><pre><code>  pipeline = task(get_data, branch=True).pipe(
      task(step1, workers=20)).pipe(
      task(step2, workers=20)).pipe(
      task(step3, workers=20, multiprocess=True))
</code></pre>
That's probably the chained method approach for those with this preference.</p>
]]></description><pubDate>Wed, 15 Jan 2025 17:06:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=42713700</link><dc:creator>Rickster35</dc:creator><comments>https://news.ycombinator.com/item?id=42713700</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42713700</guid></item><item><title><![CDATA[New comment by Rickster35 in "Show HN: Pyper – Concurrent Python Made Simple"]]></title><description><![CDATA[
<p>Yeah, this seems neatest if you don't like line breaks<p>pipeline = (<p><pre><code>    task(get_data, branch=True)

    | task(step1, workers=20)

    | task(step2, workers=20)

    | task(step3, workers=20, multiprocess=True)
</code></pre>
)<p>Square brackets would create a list and braces would create a set of course. The contents still can be split over different lines-- just pointing that this syntax doesn't do the same thing.</p>
]]></description><pubDate>Wed, 15 Jan 2025 14:51:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=42711416</link><dc:creator>Rickster35</dc:creator><comments>https://news.ycombinator.com/item?id=42711416</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42711416</guid></item></channel></rss>