Skip to main content

Consensus mechanism for Truthcoin

Project description

https://travis-ci.org/AugurProject/pyconsensus.svg?branch=master https://coveralls.io/repos/AugurProject/pyconsensus/badge.png https://badge.fury.io/py/pyconsensus.svg

pyconsensus is a Python implementation of the Augur/Truthcoin consensus mechanism, originally invented by Paul Sztorc: https://github.com/psztorc/Truthcoin.

Donations: 14sqtQRWuWqa7SCtS1iSjt1FexSxfwnw7G

Installation

The easiest way to install pyconsensus is using pip:

$ pip install pyconsensus

To upgrade your pyconsensus installation, use:

$ pip install --upgrade --no-deps pyconsensus

Usage

To use pyconsensus, import the Oracle class:

from pyconsensus import Oracle

# Example vote matrix:
#   - each row represents a voter
#   - each column represents a decision in a prediction market
my_votes = [[1, 1, 0, 0],
            [1, 0, 0, 0],
            [1, 1, 0, 0],
            [1, 1, 1, 0],
            [0, 0, 1, 1],
            [0, 0, 1, 1]]
my_decision_bounds = [
    {"scaled": True, "min": 0.1, "max": 0.5},
    {"scaled": True, "min": 0.2, "max": 0.7},
    {"scaled": False, "min": 0, "max": 1},
    {"scaled": False, "min": 0, "max": 1},
]

oracle = Oracle(votes=my_votes, decision_bounds=my_decision_bounds)
oracle.consensus()

Tests

Unit tests are in the test/ directory.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyconsensus-0.3.tar.gz (22.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page