oadf-parser-seltec3-pdf
v0.9.0
Published
A parser for SELTEC3 PDF result list files which puts tha data into a GraphQL schema
Downloads
13
Readme
OADF SELTEC 3 PDF Result List Parser
A parser which takes SELTEC3 PDF result lists and converts its data to the OADF schema. The parser returns a GraphQL schema with which the data can be queried and processed as needed.
Usage
import parser from 'oadf-parser-seltec3-pdf';
import fs from 'fs';
const filePath = '...';
const data = new Uint8Array(fs.readFileSync(filePath));
parser(data).then((schema) => {
});
LICENSE
MIT