Skip to main content

STV polling methods

Project description

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

  • Instant-Runoff Voting (IRV)

Mostly working:

  • CPO STV (Do not use for polls with too many possible outcomes)

Python versions

Tested on python 3.10 through 3.13.

Example

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

from stvpoll.scottish_stv import calculate_scottish_stv

candidates = ('orange', 'chocolate', 'pear', 'strawberry', 'bonbon')
# votes can be collections.Counter, dict or list of tuples with candidates and vote count
ballots = {
    ('orange'): 4,
    ('pear', 'orange'): 2,
    ('chocolate', 'strawberry'): 8,
    ('chocolate', 'bonbon'): 4,
    ('strawberry',): 1,
    ('bonbon',): 1,
}

result = calculate_scottish_stv(
    candidates=candidates,
    ballots=ballots,
    winners=3,
)

This will return a ElectionResult object that contains the result and some useful metadata.

Each ballot is a list of candidates in order of preference, so: [‘pear’, ‘orange’] means ‘pear’ before ‘orange’ etc.

Count is the number of ballots with those exact preferences. In the above example, 4 people voted for only ‘orange’, two people voted for ‘pear’ and then ‘orange, and so on.

result.elected_as_tuple()
('chocolate', 'orange', 'strawberry')

Code & Contributions

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

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

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

stvpoll-0.5.6-py3-none-any.whl (21.4 kB view details)

Uploaded Python 3

File details

Details for the file stvpoll-0.5.6-py3-none-any.whl.

File metadata

  • Download URL: stvpoll-0.5.6-py3-none-any.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stvpoll-0.5.6-py3-none-any.whl
Algorithm Hash digest
SHA256 ed2c05782381ef9fc3c90f832858eb4541a7c390144a74f76eaa9a3fb715a97f
MD5 221c60fb8651879d9c5ad4863beef4d2
BLAKE2b-256 ec1ecbd2a23428f1b52bb392ecaca4fc7d2713ddad4eb44b98267572784cc052

See more details on using hashes here.

Supported by

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