Asyncio decorators support
noxdafox opened this issue · 3 comments
noxdafox commented
Something on the line:
from pebble import asyncio
@asyncio.process
def example(*args):
return args
await example([1,2, 3])
davidandreoletti commented
That would be fantastic!
noxdafox commented
It will look like:
from pebble import asynchronous
@asynchronous.process
def example(*args):
return args
await example([1, 2, 3])
noxdafox commented
Issue resolved with release 5.0.0
.