summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xexamples/python/all-async.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/examples/python/all-async.py b/examples/python/all-async.py
deleted file mode 100755
index 70a3b2b1f..000000000
--- a/examples/python/all-async.py
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env python
-import gi
-from gi.repository import Tracker, GObject
-
-
-def results_ready_cb (obj, result, user_data):
- cursor = obj.query_finish (result)
-
- # This can also be done asynchronously
- while (cursor.next (None)):
- print cursor.get_string (0)
-
- user_data.quit ()
-
-def connection_ready_cb (object, result, user_data):
- assert user_data
- conn = Tracker.SparqlConnection.get_finish (result)
-
- conn.query_async ("SELECT ?u WHERE { ?u a nie:InformationElement. }",
- None,
- results_ready_cb,
- user_data)
-
-
-if __name__ == "__main__":
- loop = GObject.MainLoop ()
-
- Tracker.SparqlConnection.get_async (None, connection_ready_cb, loop)
-
- loop.run ()