summaryrefslogtreecommitdiff
path: root/examples/python/query-sync.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/python/query-sync.py')
-rwxr-xr-xexamples/python/query-sync.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/python/query-sync.py b/examples/python/query-sync.py
deleted file mode 100755
index cf8bfd6f6..000000000
--- a/examples/python/query-sync.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env python
-import gi
-from gi.repository import Tracker
-
-conn = Tracker.SparqlConnection.get (None)
-cursor = conn.query ("SELECT ?u WHERE { ?u a nie:InformationElement. }", None)
-
-while (cursor.next (None)):
- print cursor.get_string (0)