Skip to main content

Voting system based on the Borda counting scheme

Project description

The Borda count is a single-winner election method in which voters rank candidates in order of preference. The Borda count determines the winner of an election by giving each candidate a certain number of points corresponding to the position in which he or she is ranked by each voter. Once all votes have been counted the candidate with the most points is the winner. Because it sometimes elects broadly acceptable candidates, rather than those preferred by the majority, the Borda count is often described as a consensus-based electoral system, rather than a majoritarian one.

>>> import borda.count
>>> who_is_superman = borda.count.Election()
>>> calisto = borda.count.Candidate('calisto')
>>> calvin = borda.count.Candidate('calvin')
>>> clark = borda.count.Candidate('clark')
>>> who_is_superman.set_candidates([calisto, calvin])
>>> who_is_superman.add_candidate(clark)
>>> valentine = borda.count.Voter(who_is_superman, 'valentine')
>>> veronica = borda.count.Voter(who_is_superman, 'veronica')
>>> valentine.votes([clark, calisto, calvin])
>>> veronica.votes([clark, calvin, calisto])
>>> who_is_superman.get_winner() is clark
True

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

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

Source Distribution

borda-0.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

borda-0.1-py2.7.egg (11.1 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