1.0.0 • Published 6 years ago

ppcf v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Status

Build Status Greenkeeper badge

propublica-campaign-finance-node

Node wrapper for ProPublica campaign finance API.

Getting Started

First request an api key here.

Declare a new instance of the object as follows:

var ppcf = require('ppcf');

var p = new ppcf('2016', 'API_KEY_HERE');

All function calls share the name of the API and accept a json object with the field indicated in the brackets of indicated in the API documentation, and return a promise with the result being a json object.

Below is an example of the candidate search function:

p.candidates.search({"candidate":"trump"})
.then((result) => {
    console.log(result);
})
1.0.0

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago