Created
January 18, 2016 08:37
-
-
Save albertmeronyo/0261a85afc9a442a741b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rdf/tabular' | |
require 'rdf/ntriples' | |
graph = RDF::Graph.load("foo.csv", minimal: true) | |
output = RDF::Writer.for(:ntriples).buffer do |writer| | |
graph.each_statement do |statement| | |
writer << statement | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment