from rdflib import Graph # Load the RDF file g = Graph() g.parse("navipod.ttl", format="ttl") # Define the query query = ''' SELECT DISTINCT ?appname WHERE { ?s ?appname . } ''' # Execute the query results = g.query(query) # Print the results for result in results: print(result[0])