TTL file format - I have no idea what this is

前端 未结 2 1761
终归单人心
终归单人心 2021-01-13 16:35

I have a file which has a structure, but I don\'t know what format it is, nor how to parse it. The file extension is ttl, but I have never encountered this before.

S

相关标签:
2条回答
  • 2021-01-13 16:47

    Yes, @Phil is correct that is turtle syntax for storing RDF data.

    I would suggest you import it into an RDF store of some sort rather than try and parse 400MB+ yourself. You can use GraphDB, Blazegraph, Virtuso and the list goes on. A search for RDF stores should give many other options.

    Then you can use SPARQL to query the RDF store (which is like SQL for relational databases) using Python RDFlib. Here is an example from RDFLib.

    0 讨论(0)
  • 2021-01-13 16:53

    That looks like turtle - a data description language for the semantic web.

    The :has label and :label are specified for two different semantic libraries defined to share data (esco and skosxl there should not be much problem finding these libraries with a search engine, assuming the data is in the semantic web) . :literal form could be thought of as the value in an XML tag.

    They represent ontologies in a data structure:

    Subject : 10 Predicate : Name Object : John

    As for python, read the data as a file, use the subject as the keys of a dictionary, put the values in a database, its unclear what you want to do with the data.

    Semantic data is open, incomplete and could have an unusual, complex structure. The example above is very simple the primer linked above may help.

    0 讨论(0)
提交回复
热议问题