1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
"""
A simple example showing how to use a Sleepycat store to do on-disk
persistence.
"""
from rdflib import ConjunctiveGraph, Namespace, Literal
from rdflib.store import NO_STORE, VALID_STORE
from tempfile import mktemp
if __name__ == "__main__":
path = mktemp()
# Open previously created store, or create it if it doesn't exist yet
graph = ConjunctiveGraph("Sleepycat")
rt = graph.open(path, create=False)
if rt == NO_STORE:
# There is no underlying Sleepycat infrastructure, so create it
graph.open(path, create=True)
else:
assert rt == VALID_STORE, "The underlying store is corrupt"
print("Triples in graph before add: ", len(graph))
# Now we'll add some triples to the graph & commit the changes
rdflib = Namespace("http://rdflib.net/test/")
graph.bind("test", "http://rdflib.net/test/")
graph.add((rdflib["pic:1"], rdflib.name, Literal("Jane & Bob")))
graph.add((rdflib["pic:2"], rdflib.name, Literal("Squirrel in Tree")))
print("Triples in graph after add: ", len(graph))
# display the graph in RDF/XML
print(graph.serialize(format="n3"))
# close when done, otherwise sleepycat will leak lock entries.
graph.close()
graph = None
# reopen the graph
graph = ConjunctiveGraph("Sleepycat")
graph.open(path, create=False)
print("Triples still in graph: ", len(graph))
graph.close()
# Clean up the temp folder to remove the Sleepycat database files...
import os
for f in os.listdir(path):
os.unlink(path + "/" + f)
os.rmdir(path)
|