Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/creactistore/_templates/lib/rdflib/plugins/parsers/nt.py
diff options
context:
space:
mode:
Diffstat (limited to 'creactistore/_templates/lib/rdflib/plugins/parsers/nt.py')
-rw-r--r--creactistore/_templates/lib/rdflib/plugins/parsers/nt.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/creactistore/_templates/lib/rdflib/plugins/parsers/nt.py b/creactistore/_templates/lib/rdflib/plugins/parsers/nt.py
new file mode 100644
index 0000000..1ec2282
--- /dev/null
+++ b/creactistore/_templates/lib/rdflib/plugins/parsers/nt.py
@@ -0,0 +1,28 @@
+from rdflib.parser import Parser
+from rdflib.plugins.parsers.ntriples import NTriplesParser
+
+__all__ = ['NTSink', 'NTParser']
+
+class NTSink(object):
+ def __init__(self, graph):
+ self.graph = graph
+
+ def triple(self, s, p, o):
+ self.graph.add((s, p, o))
+
+
+class NTParser(Parser):
+ """parser for the ntriples format, often stored with the .nt extension
+
+ See http://www.w3.org/TR/rdf-testcases/#ntriples"""
+
+ def __init__(self):
+ super(NTParser, self).__init__()
+
+ def parse(self, source, sink, baseURI=None):
+ f = source.getByteStream() # TODO getCharacterStream?
+ parser = NTriplesParser(NTSink(sink))
+ parser.parse(f)
+ f.close()
+
+