PyFunctional icon indicating copy to clipboard operation
PyFunctional copied to clipboard

Python library for creating data pipelines with chain functional programming

Results 21 PyFunctional issues
Sort by recently updated
recently updated
newest added

https://docs.python.org/3/library/typing.html This way python autocomplete engines work better when the function types are known. It would be a considerable improvement in this library since code can be type checked before...

feature
help wanted
evergreen

Hello, I've noticed that in visual studio code the inteligent indexer/autocomplete functionality(I think provided by Jedi) isn't able to see pyfunctional (at least on my setup). By this I mean...

evergreen

It would be awesome if there was an easy way to cache results to a file and if the cache was found then load from the cache without recomputing. To...

evergreen

``` from functional import seq from pandas import DataFrame df = DataFrame({'col1': [1,2,3], 'col2': [4,5,6]}) s = seq([df]) el = s.first() print(type(el)) ``` this code prints: "" but the expected...

evergreen

add Typing for Stream and Sequence

evergreen

I'm using a function defined in the current file in pseq, and seems it errors out not being able to find other referenced functions or even simple types like Dict....

evergreen

http://www.python.org/dev/peps/pep-3113/ removed tuple param unpacking so in Python 3: ```py ( seq((1, 2), (3, 4)) .map(lambda a, b: a + b) # TypeError: () missing 1 required positional argument: 'b'...

evergreen

It will be nice to have pyfunctional conda package as mixing conda and pip packages is unsafe.

evergreen

- type type type many things - doctests were not run ! fixed all doctests, there were _many_ errors - make outer join follow the input ordering (avoids sets) -...