Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bindeali committed Nov 7, 2024
1 parent 7937908 commit 8f74af7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ Python skripty pro převod různých formátů do slovníků kompatibilních s [

## Použití
* Skripty nechávejte ve stejné složce.
* Pro všechny skripty je potřeba balíček `rdflib` (instalovatelné přes pip).
* Pro všechny skripty jsou potřeba balíčky z `requirements.txt` (instalovatelné přes `pip install -r requirements.txt`).
* [formát]ToOFN.py jsou určeny pro uživatele, ostatní skripty jsou podpůrné.
* Použití na příkazové řádce: `python [formát]ToOFN.py (vstup) (výstup)`.
* Příklad: `python archiToOFN.py archi-export.xml slovník.ttl`.
* (výstup) může mít následující koncovky: `ttl` `xml` `json-ld` `nt` `n3` `trig` `trix` `nquads`

### archiToOFN.py (verze alpha)
* Vyžaduje balíček `lxml` (instalovatelné přes pip).
* Přijímá .xml export z Archi.
2 changes: 1 addition & 1 deletion outputToRDF.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def convertToRDF(vocabulary: Vocabulary, defaultLanguage: str, outputFile: str):
if term.rppType is RPPType.PRIVATE and term.rppPrivateTypeSource is not None:
graph.add((termIRI, RDF.type, URIRef(
"https://slovník.gov.cz/legislativní/sbírka/111/2009/pojem/neveřejný-údaj")))
graph.add((termIRI, RDF.type, URIRef(
graph.add((termIRI, RDF.type, getURIRefOrLiteral(
term.rppPrivateTypeSource)))

getRDFoutput(graph, outputFile)

0 comments on commit 8f74af7

Please sign in to comment.