h2non / paco

Small utility library for coroutine-driven asynchronous generic programming in Python
http://paco.rtfd.io
MIT License
202 stars 13 forks source link

Support pipelining with operation overloading #18

Closed h2non closed 8 years ago

h2non commented 8 years ago
await items | paco.filter(filter) | paco.map(mapper) | paco.reduce(reducer)
h2non commented 8 years ago

Done for iterable functions.