query-fcfe5e5903d33723ee3cccfc381d1588

rq turtle/ttl

hebrew Lexemes ]reply[21:13, 18 September 2019 (UTC)) talk (Yurik which imported over 100,000 words from ru wiktionary. --Lexicator (sadly I don't speak Hebrew, but I wrote https://he.wiktionary.orghi, I saw you added many Hebrew words - if you know Python, we could work together on importing data from , I found a source for public domain senses: Wikidata. I query the words I want and I get relevant senses from description of their Q items.Yurik ]reply[22:31, 18 September 2019 (UTC)) talk (Yurik, words and their forms are not copyrightable, but senses are. If you can create a full list of things (words, their forms, all other statements that should be on them), I could upload that data. Note that you should first figure out what information you want to store. Currently I only see you added the words, but made no statements about them (e.g. how to pronounce them, their forms, or any other data). --this paperAccording to ]reply[21:29, 18 September 2019 (UTC)) talk (Uziel302, thanks for the offer. I am willing to participate, I don't know much python but I can learn. I didn't fully get how you filtered cc0 content from wiktionary. Anyway, hewiktionary has less than 20,000 pages so the potential there is limited. I would like a simple script where I can put list of words with their pos and sense and it will create a lexeme. Currently quickstatements doesn't support creating lexemes.Yurik

Use at

PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?itemLabel ?desc ?endesc ?enlabel
WHERE{ 
  ?item rdfs:label ?itemLabel filter (lang(?itemLabel) = "he").
  VALUES ?itemLabel {
"אלבום"@he
"אלבני"@he
"אלבנית"@he  } .
OPTIONAL {?item schema:description ?desc filter (lang(?desc) = "he").}
OPTIONAL {?item schema:description ?endesc filter (lang(?endesc) = "en").}
OPTIONAL {?item rdfs:label ?enlabel filter (lang(?enlabel) = "en").}
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?desc"):::projected v2("?endesc"):::projected v1("?enlabel"):::projected v5("?item"):::projected v6("?itemLabel"):::projected f0[["?itemLabel = 'he'"]] f0 --> v6 v5 --"rdfs:label"--> v6 bind1[/VALUES ?itemLabel/] bind1-->v6 bind10([sאלבום^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind10 --> bind1 bind11([sאלבני^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind11 --> bind1 bind12([sאלבנית^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind12 --> bind1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v5 -."schema:description".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v5 -."schema:description".-> v2 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v5 -."rdfs:label".-> v1 end