Non-blocking IPC with Asyncio
Project description
Asyncio Pipe
This package allows you to read from a multiprocessing.Connection
object
without blocking an asyncio
event loop.
The Connection
class has the same API functions as
multiprocessing.Connection
.
Usage
import asyncio
import multiprocessing
import asyncio_pipe
async def reader(read):
connection = asyncio_pipe.Connection(read)
print(await connection.recv())
def writer(write):
write.send('Hello World')
read, write = multiprocessing.Pipe(duplex=False)
writer_process = multiprocessing.Process(target=writer, args=(write,))
writer_process.start()
asyncio.get_event_loop().run_until_complete(reader(read))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
asyncio-pipe-0.0.3.tar.gz
(1.9 kB
view hashes)
Built Distribution
Close
Hashes for asyncio_pipe-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62e3cfe872289f74cab68965d58c3c53cbb831b27492ccd044554f07043c7d88 |
|
MD5 | e40d218873cddbf0fe6cc71f20a29757 |
|
BLAKE2b-256 | 5e021f7125b95c4b5f5811f760c6e63b922619a7ce8e52067c3e9cff652191ba |