Suor / funcy

A fancy and practical functional tools
BSD 3-Clause "New" or "Revised" License
3.38k stars 144 forks source link

Feature Request: async versions of functions? #145

Open eykd opened 10 months ago

eykd commented 10 months ago

Is there any interest in adding async versions of the functions here? This is such a useful toolkit in sync land, but the divide between iterators and async iterators is deep.

Between aiostream and asyncstdlib I can cobble together most of what I need, but the naming is subtly different from my go-to funcy, and the libraries use different conventions (e.g. aiostream.stream.skip(myiter, 5) vs. funcy.drop(5, myiter).

Suor commented 9 months ago

I've seen a couple of incomplete async helper libraries too, the thing is I don't write async python that much so might be not a good candidate to author such a library.