summaryrefslogtreecommitdiff
path: root/examples/berkeleydb_example.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/berkeleydb_example.py')
-rw-r--r--examples/berkeleydb_example.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/berkeleydb_example.py b/examples/berkeleydb_example.py
index d50352b1..9a16e86a 100644
--- a/examples/berkeleydb_example.py
+++ b/examples/berkeleydb_example.py
@@ -22,8 +22,7 @@ from tempfile import mktemp
def example_1():
- """Creates a ConjunctiveGraph and performs some BerkeleyDB tasks with it
- """
+ """Creates a ConjunctiveGraph and performs some BerkeleyDB tasks with it"""
path = mktemp()
# Declare we are using a BerkeleyDB Store
@@ -115,13 +114,13 @@ def example_2():
return e.code, str(e), None
data = res.read()
- encoding = res.info().get_content_charset('utf-8')
+ encoding = res.info().get_content_charset("utf-8")
j = json.loads(data.decode(encoding))
for v in j["tree"]:
# process the element in GitHub result if it's a Turtle file
if v["path"].endswith(".ttl"):
# for each file, call it by URL, decode it and parse it into the graph
- r = urlopen(v['url'])
+ r = urlopen(v["url"])
content = json.loads(r.read().decode())["content"]
g.parse(data=base64.b64decode(content).decode(), format="turtle")
print(len(g))