0.0.3 • Published 11 years ago

phl-pac-complaints v0.0.3

Weekly downloads
10
License
-
Repository
-
Last release
11 years ago

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);
});