Sans I/O wire protocol for Hypercore
Go to file
Luke Murphy 1fde858fe6
continuous-integration/drone/push Build is passing Details
Appease CI setup
2020-08-05 08:08:41 +02:00
simple_message_channels Appease CI setup 2020-08-05 08:08:41 +02:00
test Appease CI setup 2020-08-05 08:08:41 +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 Remove WIP status 2020-08-05 08:00:40 +02:00
poetry.lock Add lock file 2020-07-08 00:19:44 +02:00
pyproject.toml Appease CI setup 2020-08-05 08:08:41 +02:00

README.md

simple-message-channels

Build Status

Sans I/O wire protocol for Hypercore

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")
print(f"sent: {payload}")

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:

sent: b'\x04\x01foo'
received: (0, 1, b'foo')