Sans I/O wire protocol for Hypercore
Go to file
Luke Murphy 39107505c2
continuous-integration/drone/push Build is failing Details
Add bytes print out
2020-08-04 23:58:23 +02:00
simple_message_channels Free style some more untested place holder code 2020-08-04 23:57:34 +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 Add bytes print out 2020-08-04 23:58:23 +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")
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: ...
received: (0, 1, b"foo")