Raptor RDF Parser and Serializer Library 1.4.17 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Raptor RDF Parser and Serializer Library 1.4.17 (Default branch)
# 1  
Old 03-30-2008
Raptor RDF Parser and Serializer Library 1.4.17 (Default branch)

Raptor is a C library providing a set of parsers and serializers for Resource Description Framework (RDF) triples by parsing syntaxes into RDF triples and serializing triples into a syntax. The parsers support RDF/XML, N-Triples, GRDDL, and Turtle, and via RSS tag soup: XML RSS, Atom 0.3, and Atom 1.0. The serializers support RDF/XML (3 flavours), Turtle, DOT, N-Triples, RSS 1.0, and Atom 1.0. Raptor handles RDF/XML as used by RDF applications such as RSS 1.0, FOAF, DOAP, Dublin Core, and OWL. It can use either expat or libxml2 for XML parsing, libcurl when available for URI retrieval, and is portable to many POSIX systems. License: GNU Lesser General Public License (LGPL) Changes:
Two new JSON serializers, resource-centric "json" RDF/JSON and triple-centric "json-triples", were added. A new public XML SAX2 API class and error handling structures were added. The I/O Stream class was updated to support reading. Several new API methods were added in other classes. Many other fixes and portability and resilience improvements were made.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
RDF::Trine::Parser::Turtle(3pm) 			User Contributed Perl Documentation			   RDF::Trine::Parser::Turtle(3pm)

NAME
RDF::Trine::Parser::Turtle - Turtle RDF Parser VERSION
This document describes RDF::Trine::Parser::Turtle version 1.000 SYNOPSIS
use RDF::Trine::Parser; my $parser = RDF::Trine::Parser->new( 'turtle' ); $parser->parse_into_model( $base_uri, $data, $model ); DESCRIPTION
... METHODS
Beyond the methods documented below, this class inherits methods from the RDF::Trine::Parser class. "new" Returns a new Turtle parser. "parse_into_model ( $base_uri, $data, $model [, context => $context] )" Parses the $data, using the given $base_uri. For each RDF statement parsed, will call "$model->add_statement( $statement )". "parse ( $base_uri, $rdf, &handler )" Parses the $data, using the given $base_uri. Calls the "triple" method for each RDF triple parsed. This method does nothing by default, but can be set by using one of the default "parse_*" methods. "parse_node ( $string [, $base_uri] )" Parses and returns a RDF::Trine::Node object that is serialized in $string in Turtle syntax. BUGS
Please report any bugs or feature requests to through the GitHub web interface at <https://github.com/kasei/perlrdf/issues>. AUTHOR
Gregory Todd Williams "<gwilliams@cpan.org>" COPYRIGHT
Copyright (c) 2006-2012 Gregory Todd Williams. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-29 RDF::Trine::Parser::Turtle(3pm)