0a5fd75a29
Ordinary local file IO is blocking, and cannot easily and portably made asynchronous. This means doing file IO may interfere with asyncio applications, which shouldn’t block the executing thread. aiofiles helps with this y introducing asynchronous versions of files that support delegating operations to a separate thread pool. More information is available at : https://pypi.org/project/aiofiles. Signed-off-by: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9 lines
208 B
Plaintext
9 lines
208 B
Plaintext
config BR2_PACKAGE_PYTHON_AIOFILES
|
|
bool "python-aiofiles"
|
|
depends on BR2_PACKAGE_PYTHON3
|
|
help
|
|
aiofiles aims to handle local disk files in
|
|
asyncio applications.
|
|
|
|
https://pypi.org/project/aiofiles
|