Python Forum
any libraries for aio? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: any libraries for aio? (/thread-1162.html)



any libraries for aio? - Skaperen - Dec-09-2016

does python have, or has anyone written any libraries, to support linux aio in python?


RE: any libraries for aio? - Larz60+ - Dec-09-2016

Get a large list here, no personal experience with any of these


RE: any libraries for aio? - nilamo - Dec-09-2016

Aside from asyncio?  Or do you mean actually fileio, but asyncronously?  https://pypi.python.org/pypi/aiofiles seems neat, and is 100% so could be an interesting way to learn how to use asyncio.


RE: any libraries for aio? - Skaperen - Dec-10-2016

i'm not yet sure of what all i will need.  there will be 3 forked child processes with pipes the i need to read asynchronously ... that is i need to read them when the process writes/prints.  i don't know if asynchronous filesystem i/o is needed, yet.  if i need to do filesystem i/o then it will at least need to be interleaved with other i/o so it will need to use calls that allow it.