palombe

Palombe lets you send and receive messages synchronously through different processes using named pipes


Keywords
palombe, pypi-package
License
GPL-3.0
Install
pip install palombe==0.3.2

Documentation

Palombe PyPI version

Palombe lets you send and receive messages synchronously through different processes using named pipes

Quick example

Thread A

import palombe

palombe.send("foo", "bar")

Thread B

import palombe

print(palombe.receive("foo")) // bar