Description: A decorator to asynchronously execute synchronous functions
Copyright: 2022 Fabio Castelli (Muflone) muflone@muflone.com
License: GPL-3+
Source code: https://github.com/muflone/awaitable
Documentation: http://www.muflone.com/awaitable/
Awaitable is a small decorator to asynchronously execute synchronous functions.
- Python 3.x
You can decorate a synchronous routine using @awaitable.awaitable
to make it
awaitable and awaitable.AsyncioGather
to process some tasks using asyncio:
import awaitable
@awaitable.awaitable
def do_something():
# process a single task
return
async def process(count):
# execute some workers
tasks = awaitable.AsyncioGather()
for i in range(count):
tasks.add(do_something())
await tasks.run()
awaitable.run_awaitable(func=process, count=10)
Please see the samples folders for some others usage examples.