PyFunctional
PyFunctional copied to clipboard
Python library for creating data pipelines with chain functional programming
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...
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...
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...
``` 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...
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....
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'...
It will be nice to have pyfunctional conda package as mixing conda and pip packages is unsafe.
- 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) -...