A set of scripts that downloads death indexes from myheritage.com.
Then uses that data to determine if dead people are registered to vote.
The purpose of this project is not to prove that there is voter fraud to help any political candidate or party.
The purpose of this is to test the claims that there is or is not dead people voting.
The goal is to provide tangible proof that this either is or is not happening and put an end to hyperbolic claims from all sides.
If dead folks are voting, that presents a clear danger to our republic. If it is not happening and baseless accusations are made, confidence in our democratic institutions will fade, presenting another danger to our republic.
So in short the goal is to put baseless claims that it is or is not happening aside, and get to the facts. Hopefully all Americans would like to put this debate to rest.
need to add more
This should work with any county in the country, but I've only tested it thus far with Wayne County MI.
Install Python libraries and create your local config file.
pip3 install -r requirements.txt
cp config.example.json config.json
Obtain a bearer_token
and guest_id
from myheritage:
network
tab.Search
./search_in_historical_records/
and click on it & stay in the Headers
tab in the right pane.Form Data
.bearer_token
& guest_id
. Then paste their values in their respective spots in the config.json
file.Make any adjustments you'd like to config.json
.
git pull;
pip3 install -r requirements.txt
Check config.example.json
for any changes by comparing it with your local config.json
.
The example below will download death data from the social security death index from myheritage.com.
./death_scraper.py --sy 1900 --ey 2000 -s mi -c wayne
The script will automatically check the dead person's information against supported voter registration websites.
The output will be stored in output/checked/
. From there there are two sub-folders, dead
and zombies
.
If the person did not vote or is not registered the info will be stored in the dead
folder.
If they sent a ballot in the info will be stored in zombies/balloted
if they are just registered it their info will be in zombies/registered
.
If you'd like to help this project would benefit from more regional voter lookups.
The code is kind of a mess, I wrote this in a few hours to get results ASAP. It could use some polish.