Skip to main content

Schema validations, migrations, and conversions to standardize the Ranked Choice Voting ecosystem

Project description

PyPI - Downloads GitHub branch status Documentation Status

RCV Formats

RCV Formats helps programmers and researchers build tools that analyze the results of a Ranked-Choice Voting election without having to support the many file formats used to report RCV results.

RCV Formats converts data from several sources into a standardized format. It supports both python and command-line tools

Currently supported input formats are:

  1. The Universal RCV Tabulator JSON format
  2. The Opavote JSON format
  3. The ElectionBuddy CSV format
  4. The Dominion XLSX format
  5. The Dominion TXT format

As well as the Dominion first-round-only XML format (used in Alaska), which contains the first rounds of several elections. All other converters contain the results of just one election per file.

The standardized output format is the Universal RCV Tabulator JSON. To understand this format, look at examples or the jsonschema.

Demo

Command-line

rcvformats convert -i <input-filename> -o <output-filename>

Python

from rcvformats.conversions.automatic import AutomaticConverter

standardized_data = AutomaticConverter().convert_to_ut(input_filename)

Installation

Install the library via pip:

pip3 install rcvformats

Convert to Standardized Format

You can convert from any of the supported formats. Use this functionality to support a wide array of input data while only writing code to support a single format.

Command-line

rcvformats convert -i <input-filename> -o <output-filename>

The bash script always uses the automatic converter.

Python

from rcvformats.conversions import electionbuddy

converter = electionbuddy.ElectionBuddyConverter()
try:
  converter.convert_to_ut(filename)
except Exception as e:
  print("Errors: ", e)

Valid converters are:

from rcvformats.converters.automatic import AutomaticConverter
from rcvformats.conversions.dominion_txt import DominionTxtConverter
from rcvformats.conversions.dominion_xlsx import DominionXlsxConverter
from rcvformats.conversions.electionbuddy import ElectionBuddyConverter
from rcvformats.conversions.opavote import OpavoteConverter

The AutomaticConverter checks if the file matches any of the available schemas, and if it finds a matching schema, it runs the corresponding conversion (if a conversion is needed at all).

Schema Validation

Validate that your file is supported by RCVFormats.

Validation is only on the structure of the data, not on its contents: it is possible for a validly-formatted file to still contain invalid data.

Command-line

rcvformats validate -i <input-filename> -s <schema-type>

Valid schema validators on the command line are 'eb' (for electionbuddy files), ov10 (for opavote files pre-2022), ov11 (for opavote files post-2022), ut (for universal tabulator files). Dominion does not have a schema validation currently.

Python

from rcvformats.schemas import universaltabulator

schema = universaltabulator.SchemaV0()
is_valid = schema.validate('/path/to/file.json')

if not is_valid:
  print(schema.last_error())

Valid schema validators for python are:

from rcvformats.schemas.electionbuddy import SchemaV0
from rcvformats.schemas.opavote import SchemaV1_0
from rcvformats.schemas.universaltabulator import SchemaV0

Fill in missing transfer data

Transfer data is useful to determine where votes went when a candidate was eliminated, or when a candidate was elected and had surplus votes (in STV).

If you have a file format that does not have transfer data, there are three options: you can leave it out entirely, you can assign transfers proportionally to each eliminated candidate, or you can assign only the transfers that are unambiguous. We recommend the last option, which prepares transfer data for any round that does not involve batch elimination. The second option results in fake data which cannot be relied upon for any results reporting or analyses.

Multi-converters

Call DominionMultiConverter.explode_to_files(fileObject), which will return a dictionary mapping election names to NamedTemporaryFiles.

Command-line

rcvformats transfer -i <input-filename> -o <output-filename>

Python

from rcvformats.conversions.ut_without_transfers import UTWithoutTransfersConverter

converter = UTWithoutTransfersConverter()
try:
  converter.convert_to_ut(filename)
except Exception as e:
  print("Errors: ", e)

Upcoming plans

In addition to data normalization for RCV Summary formats, we would like similar functionality for cast vote records.

Running test suite

pip3 install -r requirements-test.txt, then run pytest rcvformats/test in the root directory, and ./scripts/lint.sh to run the linter.

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

rcvformats-0.0.46.tar.gz (28.0 kB view details)

Uploaded Source

Built Distribution

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

rcvformats-0.0.46-py3-none-any.whl (36.2 kB view details)

Uploaded Python 3

File details

Details for the file rcvformats-0.0.46.tar.gz.

File metadata

  • Download URL: rcvformats-0.0.46.tar.gz
  • Upload date:
  • Size: 28.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rcvformats-0.0.46.tar.gz
Algorithm Hash digest
SHA256 3d7978a2b731abda5ec8c4a45064f03260a2aa0f4fdbe9023aa3efff74dfeac7
MD5 882cb6f6c28a5efa3719f1d2dc0d18c8
BLAKE2b-256 078e09b89bfd43255502161fd3e6fe5c561e9bb2b296538dd1cf9d2481b66ddd

See more details on using hashes here.

File details

Details for the file rcvformats-0.0.46-py3-none-any.whl.

File metadata

  • Download URL: rcvformats-0.0.46-py3-none-any.whl
  • Upload date:
  • Size: 36.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rcvformats-0.0.46-py3-none-any.whl
Algorithm Hash digest
SHA256 71fe8227192d1bac88b379ea69dc796ca84d0d2cecb73720147ce4f711ebafaf
MD5 8369c27d3eb9044dcef1dfd68b1f7624
BLAKE2b-256 081f7012e593762ea0ea5c6bfd2a3fbe1a1a013f807354a23ffe055b0843d4b3

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