multistream-select

an implementation of the multistream protocol in python


Keywords
ipfs, multistream-select
License
MIT
Install
pip install multistream-select==1.0.1

Documentation

py-multistream-select

Travis CI codecov.io

an implementation of the multistream protocol in python

Table of Contents

Install

py-multistream-select is a standard PyPI module which can be installed with:

pip install multistream-select

Usage

Example

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)

Contribute

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.

License

This project is licensed under the MIT License - see the LICENSE file for details