Skip to content

eider-rpc/eider-py

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.

eider-py

CircleCI

This is the reference Python implementation of the Eider RPC protocol.

Full documentation is on Read the Docs.

Quick Start

python3 -m venv venv
venv/bin/pip install -e .
venv/bin/pip install -r requirements-dev.txt
venv/bin/pytest

Python version compatibility

Version 2.0 of this package dropped support for Python 3.4-3.6 in order to take advantage of modern Python features (e.g. async/await syntax). If you need to support those older Python versions, use version 1.x of this package. The two implementations are entirely compatible with each other over the wire; no changes were made to the Eider RPC protocol.