Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/semanticxo/sparql.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/semanticxo/sparql.py')
-rw-r--r--src/semanticxo/sparql.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/semanticxo/sparql.py b/src/semanticxo/sparql.py
index ca42167..968ecef 100644
--- a/src/semanticxo/sparql.py
+++ b/src/semanticxo/sparql.py
@@ -28,7 +28,6 @@ class SPARQL(object):
# Get the results
response = conn.getresponse()
r = cjson.decode(response.read(), all_unicode=False)
- print r['results']['bindings']
# Recode them
results = []
for entry in r['results']['bindings']:
@@ -40,4 +39,4 @@ class SPARQL(object):
result[name] = value
results.append(result)
conn.close()
- return results \ No newline at end of file
+ return results