Codebase list libcatmandu-rdf-perl / 678f7a2
new release Jakob Voss 9 years ago
7 changed file(s) with 19 addition(s) and 13 deletion(s). Raw diff Collapse all Expand all
00 Changelog for Catmandu-RDF
11
22 {{$NEXT}}
3 - support streaming of NTriple data
34
45 0.24 2015-03-09 13:20:23 CET
56 - added support of SPARQL
33 "Jakob Voß"
44 ],
55 "dynamic_config" : 0,
6 "generated_by" : "Dist::Zilla version 5.031, Dist::Milla version v1.0.5, CPAN::Meta::Converter version 2.142690",
6 "generated_by" : "Dist::Milla version v1.0.8, Dist::Zilla version 5.020, CPAN::Meta::Converter version 2.141520",
77 "license" : [
88 "perl_5"
99 ],
3030 },
3131 "develop" : {
3232 "requires" : {
33 "Dist::Milla" : "v1.0.8",
3334 "Test::Pod" : "1.41"
3435 }
3536 },
5455 "web" : "https://github.com/LibreCat/Catmandu-RDF"
5556 }
5657 },
57 "version" : "0.24",
58 "version" : "0.25",
5859 "x_contributors" : [
60 "Jakob Voss <jakob@nichtich.de>",
5961 "Jakob Voss <voss@gbv.de>",
6062 "Patrick Hochstenbach <patrick.hochstenbach@ugent.be>"
6163 ]
2222
2323 - [Catmandu::Exporter::RDF](https://metacpan.org/pod/Catmandu::Exporter::RDF)
2424
25 Serialize RDF data (as RDF/XML, RDF/JSON, Turtle, NTriples, RDFa...).
25 Serialize RDF data (as RDF/XML, RDF/JSON, Turtle, NTriples, RDFa...)
2626
2727 - [Catmandu::Importer::RDF](https://metacpan.org/pod/Catmandu::Importer::RDF)
2828
29 Parse RDF data (RDF/XML, RDF/JSON, Turtle, NTriples...).
29 Parse RDF data (RDF/XML, RDF/JSON, Turtle, NTriples...) or import from a SPARQL
30 endpoint
3031
3132 - [Catmandu::Fix::aref\_query](https://metacpan.org/pod/Catmandu::Fix::aref_query)
3233
33 Copy values of RDF data in aREF format to a new field.
34 Copy values of RDF data in aREF format to a new field
3435
3536 # SEE ALSO
3637
66 use RDF::Trine::Model;
77 use RDF::aREF;
88
9 our $VERSION = '0.24';
9 our $VERSION = '0.25';
1010
1111 with 'Catmandu::RDF';
1212 with 'Catmandu::Exporter';
33 use Moo;
44 use Catmandu::Fix;
55
6 our $VERSION = '0.24';
6 our $VERSION = '0.25';
77
88 with 'Catmandu::Fix::Base';
99
99 use RDF::aREF::Encoder;
1010 use RDF::NS;
1111
12 our $VERSION = '0.22';
12 our $VERSION = '0.25';
1313
1414 with 'Catmandu::RDF';
1515 with 'Catmandu::Importer';
222222
223223 catmandu convert RDF --file rdfdump.ttl to JSON
224224
225 catmandu convert RDF --url http://dbpedia.org/sparql --sparql "SELECT ?film WHERE { ?film dct:subject <http://dbpedia.org/resource/Category:French_films> }"
225 catmandu convert RDF --url http://dbpedia.org/sparql
226 --sparql "SELECT ?film WHERE { ?film dct:subject <http://dbpedia.org/resource/Category:French_films> }"
226227
227228 In Perl code:
228229
55 use Moo::Role;
66 use RDF::NS;
77
8 our $VERSION = '0.24';
8 our $VERSION = '0.25';
99
1010 our %TYPE_ALIAS = (
1111 Ttl => 'Turtle',
6767
6868 =item L<Catmandu::Exporter::RDF>
6969
70 Serialize RDF data (as RDF/XML, RDF/JSON, Turtle, NTriples, RDFa...).
70 Serialize RDF data (as RDF/XML, RDF/JSON, Turtle, NTriples, RDFa...)
7171
7272 =item L<Catmandu::Importer::RDF>
7373
74 Parse RDF data (RDF/XML, RDF/JSON, Turtle, NTriples...).
74 Parse RDF data (RDF/XML, RDF/JSON, Turtle, NTriples...) or import from a SPARQL
75 endpoint
7576
7677 =item L<Catmandu::Fix::aref_query>
7778
78 Copy values of RDF data in aREF format to a new field.
79 Copy values of RDF data in aREF format to a new field
7980
8081 =back
8182