Giter Site home page Giter Site logo

ntparser's Introduction

NT Parser

This parser processes any .nt file according to the grammar specified in https://www.w3.org/TR/n-triples/#n-triples-grammar

Build

mkdir -p build
cd build
cmake ..
make
  • This will generate the static library libntparser.a
  • Also a sample split_nt program that separates IRIS, Blank Nodes and Literals in 3 different files, separated by new lines

Library usage

#include <fstream>
#include <iostream>
#include <nt_parser.hpp>

void processor(NTTriple *ntriple, void *) {
  // ntriple->subject, ntriple->predicate, ntriple->object
  // each one has a "char *data" containing the full string of the resource
  // also each resource has a type that can be one of IRI, LITERAL or BLANK_NODE
  // eg
  std::cout << "Resource " << ntriple->subject.data << " has type "
            << ntriple->subject.type << std::endl;
}

int main(int argc, char **argv) {
  std::ifstream ifs(argv[1]);
  NTParser parser(&ifs, processor);
  parser.parse();
}

ntparser's People

Contributors

cristobalm avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.