Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'ConjunctiveGraph' object has no attribute 'preferredLabel' #15

Closed
bsesic opened this issue Jan 4, 2023 · 2 comments
Closed

'ConjunctiveGraph' object has no attribute 'preferredLabel' #15

bsesic opened this issue Jan 4, 2023 · 2 comments
Assignees
Labels
bug Something isn't working

Comments

@bsesic
Copy link
Contributor

bsesic commented Jan 4, 2023

Einleitung

Django wirft einen AttributeError aus.
Beispiel
Die Daten können damit nicht mehr abgefragt werden.

Traceback

Das Problem liegt in views.py.
Zeile 184: primary_resource = create_quad_by_predicate(resource.primary_resource, resource, result)
Zeile 219: "labels": get_labels_for(predicate_uri, result, resource),
Zeile 354: for _, label in result.preferredLabel(URI_or_literal, default=[(None, URI_or_literal)]):

Hinweis

Am besten schaut man es in der Revision b5ee5371b08c473c8f8b0c741a840e40b39e487d an.

Der Fehler liegt daran, dass SPARQLWrapper 2.0.0 auf rdflib 6.2.0 basiert. Ein Revert auf eine vorherige Version geht nicht mehr (sodass die Anwendung zwar veraltet ist aber stabil läuft).
In rdflib wurde ab Versioon 6.0.0. graph.preferredLabel() entfernt, worauf unsere Anwendung basiert. Siehe: rdflib/graph.py. Dies betrifft auch graph.label(), graph.comment(), graph.seq(), graph.load()`, diese Funktionen benutzen wir jedoch nicht.

Lösungsvorschlag

Wir brauchen eine Alternative um die Labels zu laden.
get_labels_for muss umgeschrieben werden, sodass es .preferredLabel nicht mehr braucht und eine andere Funktion nutzt. Dafür müssen wir wahrscheinlich eine eigene Funktion schreiben. In der Dokumentation von RDFlib habe ich keine Alternative gefunden. Außerdem sollte überprüft werden ob es ein preferredLabel gibt.

@bsesic bsesic added the bug Something isn't working label Jan 4, 2023
@bsesic
Copy link
Contributor Author

bsesic commented Jan 4, 2023

@hdm-malmsheimer Bitte fixen, falls möglich.

@bsesic
Copy link
Contributor Author

bsesic commented Jan 4, 2023

Link zur Dokumentation von SPARQLWrapper.
Link zur Dokumentation von RDFLib.

@bsesic bsesic pinned this issue Jan 4, 2023
hdm-malmsheimer pushed a commit that referenced this issue Jan 8, 2023
bsesic added a commit that referenced this issue Jan 9, 2023
@bsesic bsesic closed this as completed Jan 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

2 participants