Votelib is a package to evaluate results of elections under various systems. It aims to provide reliable implementations of many voting systems so that they may be evaluated as they are used in real-world conditions and compared. The primary focus is on political decision making, but the library is not limited to evaluating political decisions only.
Votelib does not aim to be an end-to-end tool for managing elections; it does not (and will not) provide user interfaces or concern itself with other parts of the election process than determining the result from the votes cast. It also does not directly address theoretical analysis of different voting systems (in terms of automatic proofs of satisfied criteria) - it is rather meant for practical use and experiments.
Votelib aims to enrich the public debate around voting systems by providing an impartial and solid basis for their comparison; the project does not (and will not) lend itself to the agenda of promoting any particular system (but the license allows you to use it to do so, of course).
Votelib is implemented in pure Python without any third-party dependencies and is licensed permissively under an MIT license.
Votelib supports Python 3.7+. You can get Votelib from PyPI by using
pip install votelib
For restricted settings, you can also download the contents of its
repository
and copy the votelib
folder into a desired location. No actual installation
is necessary because Votelib does not have any dependencies beyond Python.
At the heart of Votelib lie evaluators, objects that determine election
results from the votes cast, defined in the submodules of the evaluate
subpackage. The supported evaluators cover most of the systems
used around the world, such as the following:
The following classes of votes are supported:
convert
module, where you can also find utilities to facilitate district-wise
elections.The candidate
and vote
allow for validity checking of candidate nominations
and cast ballots respectively.
The whole library is designed for numerical stability and tries to avoid inexact arithmetics; if you detect any such behavior, please report it.
Votelib is meant as a library to be imported from other Python code. The objects in the various submodules of Votelib can be easily combined and chained to model the election system of choice. Examples can be found in the documentation. A simple example is evaluating the Irish presidential election of 1990, which uses a single transferable vote method:
votes = {
('Mary Robinson',): 612265,
('Brian Lenihan',): 694484,
('Austin Currie', 'Brian Lenihan'): 36789,
('Austin Currie', 'Mary Robinson'): 205565,
('Austin Currie',): 25548,
}
evaluator = votelib.evaluate.sequential.TransferableVoteSelector(
quota_function='droop',
transferer='Hare'
)
assert evaluator.evaluate(votes) == ['Mary Robinson']
The library covers many more systems like this! Find more in the ReadTheDocs documentation.
Feedback, additions, suggestions, issues and pull requests are welcome and much appreciated on GitHub. See the issues list there for some suggestions.
How to add features:
git checkout -b feature/feature-name
)git commit -am "feature-name added"
)git push origin feature/feature-name
)Development requires pytest
for testing and sphinx
to generate
documentation. Tests can be run using simple
pytest tests
(See issues for more.)
Votelib is developed by Jan Šimbera simbera.jan@gmail.com.
Votelib is available under the MIT license. See LICENSE.txt
for more details.