This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Juan Telleria2
Recipients Juan Telleria2
Date 2019-09-07.17:50:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567878619.06.0.744538231736.issue38052@roundup.psfhosted.org>
In-reply-to
Content
Could sspipe be included as a Core Python module?

https://sspipe.github.io/

https://github.com/sspipe/sspipe

https://pypi.org/project/sspipe/

sspipe allows to use syntax such as:

from sspipe import p, px
import numpy as np
import pandas as pd

(
  np.linspace(0, pi, 100) 
  | p({'x': px, 'y': np.sin(px)}) 
  | p(pd.DataFrame)
  | px[px.x > px.y].head()
  | p(print, "Example 6: pandas and numpy support:\n", px)
)
History
Date User Action Args
2019-09-07 17:50:19Juan Telleria2setrecipients: + Juan Telleria2
2019-09-07 17:50:19Juan Telleria2setmessageid: <1567878619.06.0.744538231736.issue38052@roundup.psfhosted.org>
2019-09-07 17:50:19Juan Telleria2linkissue38052 messages
2019-09-07 17:50:18Juan Telleria2create