Rock the Vote

Overview

Rock the Vote is an online registration tool. This Parsons connector makes use of Rock the Vote’s Rocky API.

Note

Authentication

In order to authenticate with the API, users must specify the ID and API key of the RTV partner organization for the data.

QuickStart

To use the RockTheVote class you can either store the partner ID and API key as an environmental variable (RTV_PARTNER_ID and RTV_PARTNER_API_KEY, respectively), or you can pass them in as arguments to the class.

from parsons import RockTheVote

# If credentials are specified as environment variables, no need to pass them in
rtv = RockTheVote()

# Pass credentials directly
rtv = RockTheVote(partner_id='123', partner_api_key='supersecretkey')

To fetch a list of registrations submitted for the partner ID, use the run_registration_report method. It is possible to filter the results by providing a parameter to specify a start date for the registrations.

# Get list of registrations
registrants = rtv.run_registration_report(since='2020-01-01')

The run_registration_report will block as the report is being generated and downloaded from the Rocky API. For larger reports, this can take a long time. If you have other things you want to do while the report is running, you can break up the creation of the report from the fetching of the data.

# Create report and get the ID
report_id = rtv.create_registration_report(since='2020-01-01')

# Get registration report
registrants = rtv.get_registration_report(report_id)

API