pydash icon indicating copy to clipboard operation
pydash copied to clipboard

The kitchen sink of Python utility libraries for doing "stuff" in a functional way. Based on the Lo-Dash Javascript library.

Results 11 pydash issues
Sort by recently updated
recently updated
newest added

https://stackoverflow.com/questions/68520346/python-pydash-example-of-reduce-with-accumulator

The repo that I use pydash in is typed, and pydash not supporting typing means that in a lot of places we need to ignore the types. This would be...

enhancement
help wanted

I'm very interested in being able to retrieve data from a list/dictionary. I wanted to have the equivalent of [jsonata](https://github.com/jsonata-js/jsonata) in Python, but I couldn't find anything. I thus decided...

Flatten in `fnc` will flatten a list of querysets but `pydash` won't: ```py from fnc import flatten list(flatten([Skill.objects.all()[:2], Skill.objects.all()[2:4]])) [, , , ] from pydash import flatten list(flatten([Skill.objects.all()[:2], Skill.objects.all()[2:4]])) [,...

## Expected Behaviour When invoked, the debounced function is invoked after `wait` milliseconds. ## Current Behaviour When invoked, the debounced function is invoked immediately, not after `wait` milliseconds. ## Example...

bug
help wanted

When using throttle from lodash, if one or more calls are made during the wait period, a single call will be scheduled at the end of the wait period (i.e....

help wanted

When running the test suite on darwin, the delay test is always *just* too long to pass. Specifically: ``` @parametrize( "func,wait,args,kargs,expected", [(lambda a, b, c: (a, b, c), 250, (1,...

One thing that would be cool to have in the library is a maybe apply function kinda thing. `pydash.get` is really cool but I am a bit sad that it...

Chains offer an amazing opportunity for parallalelization, since unless a call to "thru" is encountered (or a function accepts the whole input), all calls can be parallelized. Right now, when...

If I add a generator as the object of my chain and I use the `take_while` function, it tries to call the nth index of the generator which is not...