Sans I/O wire protocol for Hypercore
Go to file
Luke Murphy 1a12b11e9a
Use messages instead of a single message (no cb here)
2020-08-03 22:33:51 +02:00
simple_message_channels Use messages instead of a single message (no cb here) 2020-08-03 22:33:51 +02:00
test Spec out basics on send/send_batch once again 2020-08-01 18:53:28 +02:00
.drone.yml Bootstrap SMC 2020-06-30 01:53:34 +02:00
.gitignore Bootstrap SMC 2020-06-30 01:53:34 +02:00
CHANGELOG.md Migrate to pyproject config 2020-07-07 16:05:55 +02:00
LICENSE Bootstrap SMC 2020-06-30 01:53:34 +02:00
README.md Mock out a python-like interface 2020-08-03 22:23:11 +02:00
poetry.lock Add lock file 2020-07-08 00:19:44 +02:00
pyproject.toml Add pyvarint dependency 2020-07-08 00:20:24 +02:00

README.md

simple-message-channels

Build Status

Sans I/O wire protocol for Hypercore

Work In Progress

Install

$ pip install simple-message-channels

Example

from simple_message_channels import SimpleMessageChannel

smc_a = SimpleMessageChannel()
smc_b = SimpleMessageChannel()

payload = smc_b.send(0, 1, b"foo")

for idx in range(0, len(payload)):
    smc_a.recv(payload[idx, idx + 1])

for msg in smc_a.messages:
    print(f"received: {msg}")

Output:

(0, 1, b"foo")