Gregory Williams > RDF-Trine-0.111 > RDF::Trine::Parser::Turtle

Download:
RDF-Trine-0.111.tar.gz

Dependencies

Annotate this POD

Website

CPAN RT

Open  0
Report a bug
Module Version: 0.111   Source   Latest Release: RDF-Trine-0.112_01

NAME ^

RDF::Trine::Parser::Turtle - Turtle RDF Parser.

VERSION ^

This document describes RDF::Trine::Parser::Turtle version 0.111

SYNOPSIS ^

 use RDF::Trine::Parser;
 my $parser     = RDF::Trine::Parser->new( 'turtle' );
 my $iterator = $parser->parse( $base_uri, $data );

DESCRIPTION ^

...

METHODS ^

new

Returns a new Turtle parser.

parse ( $base_uri, $data )

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_into_model ( $base_uri, $data, $model )

Parses the $data, using the given $base_uri. For each RDF triple parsed, will call $model->add_statement( $statement ).

AUTHOR ^

Gregory Todd Williams <gwilliams@cpan.org>

COPYRIGHT ^

Copyright (c) 2006-2009 Gregory Todd Williams. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.