From 98585df9d00a9e57cf6687a56c001ad455f68256 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Sun, 22 Nov 2020 22:09:15 +0100 Subject: examples: Remove all-async.py query It's not clear how this is different from query-async.py. --- examples/python/all-async.py | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 examples/python/all-async.py (limited to 'examples') 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 () -- cgit v1.2.1