Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 815 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 815 Bytes

Build Status

phl-pac-complaints

A thin Node.js client for working with Philadelphia's Police Advisory Commission Complaints API.

This is a work in progress.

Learn more about Philadelphia's PAC Complaints data on OpenDataPhilly.

Example Usage

var PhlPacComplaints = require('phl_pac_complaints');
var phlPacComplaints = new PhlPacComplaints();

phlPacComplaints.get({where: "ACTION='Reject'"}, function (error, data) {
    if (error) return error;
    console.log(data);
});