Could sspipe module be included as part of Python's Standard Library?
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)
)
The issue in Python's Bug Tracker is:
https://bugs.python.org/issue38052
Any Core Python Developer willing to support this PEP?
Thank you,
Juan Telleria
_______________________________________________
Python-Dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at
https://mail.python.org/archives/list/[email protected]/message/2MUGDTKV5CFRXZ5LKLIBW5XB7Y3QZV6A/