Navigation Menu

Skip to content

nbdavies/openelections-data-wi

 
 

Repository files navigation

Build Status

openelections-data-wi

Pre-processed election results for Wisconsin elections

parser.py processes files based on cached metadata in local_data_cache/elections_metadata.json
To update this metadata from the OpenElections API, run python fetch.py wi -m
(fetch.py fetches data files based on the cached metadata)

To re-parse all data files:

python parser.py

To parse data files for specific elections, append one or more election ids:

python parser.py 426

Elections will be processed in the order they appear in the metadata.

A folder local_data_cache keeps a local copy of input data files. To update it:

python fetch.py wi

To fetch input files for specific elections, append one or more election ids:

python fetch.py wi 1577 404

Spot tests to check a few records from each results file are in tests/wi-elections.tests.csv. To run, use:

python run_spot_tests.py [<tests_filepath>]

Tests to validate the CSV output using csv-test can be run (2014 example):

npm install
node_modules/csv-test/bin/csv-test tests/csv-test-config.yml '2014/*' tests/csv-test-validators.yml

Process for adding new election data

  • Update metadata at openelections.net, note new id #
  • python fetch.py wi -m to update local metadata file
  • python fetch.py wi <id> to download input data for new election
  • Pick random records from downloaded data files, add them to tests (at least one record per file)
  • python parser.py <id> to parse input data, write results file
  • Add line(s) from office_table.csv to office_table.xlsx
  • python run_spot_tests.py
  • Fix any problems found
  • Push to repo
  • Make PR to update main repo

About

Pre-processed election results for Wisconsin elections

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%