Skip to main content

STV polling methods

Project description

STVPoll README

Library to perform STV Poll calculations. The package was created as part of the VoteIT project, specifically to handle larger elections that was hard to count with Markus Schulzes STV method.

Typical usage would be primary elections or elections with many winners from a pool of many candidates. The result will be proportional.

Fully supported:

  • Scottish STV

Work in progress:

  • CPO STV

Example

Case from: https://en.wikipedia.org/wiki/Single_transferable_vote

from stvpoll.scottish_stv import ScottishSTV

example_ballots = (
    (('orange',), 4),
    (('pear', 'orange',), 2),
    (('chocolate', 'strawberry',), 8),
    (('chocolate', 'bonbon',), 4),
    (('strawberry',), 1),
    (('bonbon',), 1),
)

poll = ScottishSTV(seats=3, candidates=('orange', 'chocolate', 'pear', 'strawberry', 'bonbon'))
for (candidates, bcount) in example_ballots:
    poll.add_ballot(candidates, bcount)

result = poll.calculate()

This will return a ElectionResult object that contains the result and some useful metadata. The elected attribute contains the elected candidates.

Candidates to the left have higher preference, so: [‘pear’, ‘orange’] means ‘pear’ before ‘orange’ etc. The number is how many of that kind of ballot there is.

result.elected
[<Candidate: chocolate>, <Candidate: orange>, <Candidate: strawberry>]

Code & Contributions

You may fork the code at: https://github.com/VoteIT/STVPoll

Please report any bugs there, or email info@voteit.se

Changes

0.1.0 (2017-11-03)

  • Initial version

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

STVPoll-0.1.0.tar.gz (8.2 kB view details)

Uploaded Source

File details

Details for the file STVPoll-0.1.0.tar.gz.

File metadata

  • Download URL: STVPoll-0.1.0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for STVPoll-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a55425f9477cfea4c3941108bfc4f60fd0991609ce01bc6a814f211f88fba3e4
MD5 3e7ff69d173d988cc8bb24a9ab8d24b7
BLAKE2b-256 8e342f299d7d9fd9fc41e877d0311714a53f93bf31155b936c54296f2fad036a

See more details on using hashes here.

Provenance

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