Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aepyornis/dof-reader
https://github.com/aepyornis/dof-reader
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aepyornis/dof-reader
- Owner: aepyornis
- License: agpl-3.0
- Created: 2018-03-29T12:40:57.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-21T18:08:10.000Z (over 5 years ago)
- Last Synced: 2024-12-11T22:47:16.083Z (about 1 month ago)
- Language: JavaScript
- Size: 86.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dof-reader
This node library parses NYC quarterly statement tax bill pdfs.
While tax bills contain lots of useful and interesting information about a property, this project is very narrow in scope. It only extracts if the tax bills has a rent-stabilization fee and how many registered rent-stabilized units there are.
Install: ` npm install dof-reader `
Use: ` ./dof-reader.js /path/to/tax_bill.pdf `
example output:
``` json
{
"rentStabilzed": true,
"unitCount": 25,
"date": "2018-02-28"
}
```run the tests: `npm test `