I have a .ttls file . i want to read it with python and extract some information. I googled a bit. there is the library rdflib. but I think it doesn't support the .ttls file. does anyone have any idea how i can read this .ttls file with python?
Asked
Active
Viewed 60 times
0
-
have you tried this repo: https://github.com/RDFLib/rdflib-rdfstar ? – mquantin May 03 '23 at 14:55
2 Answers
0
Possible duplicte of How can I parse rdf* files with python? does rdflib sopport rdf*? No answer
Python rdflib issue about this topic: https://github.com/RDFLib/rdflib/issues/955
Have you tried this repo: https://github.com/RDFLib/rdflib-rdfstar ? (I didn't!)
A robust indirect solution is to use a triple store (such as GraphDB) load your rdf* data and query it through the graphDB python API
Other implementations declared by the RDF-star working group are few other options.

mquantin
- 1,085
- 8
- 23