[Python-Dev] Feature Request: Python Pipes: Incluye sspipe module

2019-09-13 Thread Juan Telleria
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 -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/2MUGDTKV5CFRXZ5LKLIBW5XB7Y3QZV6A/


[Python-Dev] Re: Feature Request: Python Pipes: Incluye sspipe module

2019-09-14 Thread Juan Telleria
> the bar for inclusion in the stdlib is higher than it was before: being
> generally useful is usually not enough.
>

Ok

P.S. Posting to Python-Dev, Python-Ideas and creating an issue is excessive
> and splits conversation, making it difficult to follow. In the future, such
> proposals should begin by being posted only in Python-Ideas, please.
>

Ok

- Tal
>

Thank you @Tal. Understood.

With next issues I will take care of these points.

Best,
Juan Telleria
___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/EMUXJSJVADSTOKXTHZPZW62J4XP7YW7H/