phl-pac-complaints
v0.0.3
Published
A Node.js module for working with City of Philadelphia's Police Advisory Commision Complaints Data.
Downloads
6
Readme
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);
});