an implementation of the multistream protocol in python
py-multistream-select
is a standard PyPI module which can be installed with:
pip install multistream-select
from multistream_select.multiselect import Multiselect
from multistream_select.multiselect_client import MultiselectClient
async def client_get_protocol(host_info):
protocols = [ '/cats', '/dogs' ]
stream = func_to_create_stream(host_info)
client = MultiselectClient()
return await client.select_one_of(protocols, stream)
async def host_get_protocol(handlers):
stream = func_to_create_stream()
host = Multiselect()
for protocol in handlers:
host.add_handler(protocol, handlers[protocol])
return host.negotiate(stream)
Contributions welcome. Please check out the issues.
Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS Code of Conduct.
Small note: If editing the README, please conform to the standard-readme specification.
This project is licensed under the MIT License - see the LICENSE file for details