Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nichtich/rdf-dumper
Perl module to dump RDF data objects
https://github.com/nichtich/rdf-dumper
Last synced: 22 days ago
JSON representation
Perl module to dump RDF data objects
- Host: GitHub
- URL: https://github.com/nichtich/rdf-dumper
- Owner: nichtich
- Created: 2011-06-21T14:38:41.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-01-15T12:47:13.000Z (almost 11 years ago)
- Last Synced: 2024-10-30T16:24:19.435Z (2 months ago)
- Language: Perl
- Homepage: https://metacpan.org/pod/RDF::Dumper
- Size: 205 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RDF::Dumper is a Perl module to stringify RDF data objects in readable form,
which is handy for debugging and logging. Actually, the module is just a handy
wrapper on RDF::Trine::Serializer. You can use it like this:use RDF::Dumper;
print rdfdump( $rdf_object );# configure serializer (as singleton)
use RDF::Dumper 'rdfxml', namespaces => { ... };print rdfdump( $rdf ); # use serializer created on import
print rdfdump( $serializer, $rdf ); # use another serializer
By the way, strings with RDF in some serialization are not considered as RDF
data objects, but strings that first need to be parsed to get RDF data.Feel free to submit patches, comments, and issues and/or fork this module at
https://github.com/nichtich/RDF-Dumper# Status
[![Build Status](https://travis-ci.org/gbv/RDF-Dumper.png)](https://travis-ci.org/gbv/RDF-Dumper)
[![Coverage Status](https://coveralls.io/repos/gbv/RDF-Dumper/badge.png?branch=devel)](https://coveralls.io/r/gbv/RDF-Dumper)
[![Kwalitee Score](http://cpants.cpanauthors.org/dist/RDF-Dumper.png)](http://cpants.cpanauthors.org/dist/RDF-Dumper)