voc4cat


Namevoc4cat JSON
Version 0.8.5 PyPI version JSON
download
home_page
SummarySKOS vocabulary management tool of NFDI4Cat.
upload_time2024-03-09 21:03:02
maintainer
docs_urlNone
author
requires_python>=3.8
licenseBSD-3-Clause
keywords skos linked data rdf spreadsheet vocabulary xlsx
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![DOI](https://zenodo.org/badge/598213054.svg)](https://zenodo.org/badge/latestdoi/598213054)
[![](https://github.com/nfdi4cat/voc4cat-tool/workflows/CI/badge.svg)](https://github.com/nfdi4cat/voc4cat-tool/actions)
[![PyPI - Version](https://img.shields.io/pypi/v/voc4cat)](https://pypi.org/project/voc4cat)

# SKOS vocabulary management with GitHub & Excel

## Overview

For **[voc4cat](https://github.com/nfdi4cat/voc4cat)**, a term collection for catalysis created in [NFDI4Cat](https://www.nfdi4cat.org), we developed a **toolbox for collaboratively maintaining SKOS vocabularies on GitHub using Excel** (xlsx-files) as user-friendly interface. It consists of several parts:

- **voc4cat-tool** (this package)
  - A command-line tool to convert vocabularies from Excel to SKOS (turtle/rdf) and validate the vocabulary. Validation includes formal validation with SHACL-profiles but also additional checks. The `voc4cat` tool can be run locally but is also well suited for integration in CI-pipelines. It was inspired by [RDFlib/VocExcel](https://github.com/nfdi4cat/VocExcel). Parts of the vocexcel code base were merged into this repository (see git history).
- **[voc4cat-template](https://github.com/nfdi4cat/voc4cat-template)**
  - A github project template for managing SKOS-vocabularies using a GitHub-based workflows including automation by gh-actions.
- **[voc4cat-playground](https://github.com/nfdi4cat/voc4cat-playground)**
  - A testbed for playing with the voc4cat workflow. The playground is a test-deployment of the voc4cat-template.
- **[voc4cat](https://github.com/nfdi4cat/voc4cat)**
  - A SKOS vocabulary for the catalysis disciplines that uses the voc4cat workflow for real work.

## Command-line tool voc4cat

voc4cat was mainly developed to be used in gh-actions but it is also useful as a locally installed command line tool. It has the following features.

- Convert between SKOS-vocabularies in Excel/xlsx format and rdf-format (turtle) in both directions.
- Check/validate SKOS-vocabularies in rdf/turtle format with the [vocpub](https://w3id.org/profile/vocpub) SHACL-profile.
- Use a vocabulary-configuration file to specify for example ID ranges for each contributor.
- Check xlsx vocabulary files for errors or incorrect use of IDs (voc4cat uses pydantic for this validation)
- Generate documentation from SKOS/turtle vocabulary file using [pyLODE](https://github.com/RDFLib/pyLODE) (or [ontospy](http://lambdamusic.github.io/Ontospy/))
- Express concept-hierarchies in xlsx by indentation.
- Consistently update all IRIs in the xlsx vocabulary (e.g. with new namespace or IDs)

voc4cat works on files or folders. If a folder is given all matching files are processed at once.

### Installation requirements

To start you need:

- Python (3.8 or newer)

voc4cat is platform independent and should work at least on windows, linux and mac.

### Installation steps

If you just want to use the command line interface it is strongly suggested to use [pipx](https://pypa.github.io/pipx/) for the installation. `pipx` makes installing and managing python command line application very easy.

`pipx install voc4cat`

Alternatively you can `pip`-install voc4cat like any other Python package.
To install including all development tools use `pip install .[dev]` for just the test tools `pip install .[tests]`. For tests we use [pytest](https://docs.pytest.org).

### Typical use

The available commands and options can be explored via the help system:

`voc4cat --help` (or simply `voc4cat`)

which lists all available sub commands. These have their own help, for example:

`voc4cat transform --help`

To create a new vocabulary use the voc4cat-adjusted template from the `templates` subfolder.
For starting you can use simple temporary IRIs like (`ex:my_term`) for your concepts.
With voc4cat you can later replace these later by different namespaces and/or different numeric IDs.

The files used below to demonstrate some commands can be found in the example folder of the [repository](https://github.com/nfdi4cat/voc4cat-tool/).

For expressing hierarchies in SKOS ("broader"/"narrower") voc4cat offers two options. One way is to enter a list of children IRIs  (in sheet "Concepts"). However, filling the Children URI columns with lists of IRIs can be tedious. Therefore, voc4cat offers a second easier way to express hierarchies between concepts and that is by indentation. voc4Cat understands Excel-indentation (the default) but can also work with other indentation formats (e.g. 3 spaces per level). To switch between the two representations, use the `transform` sub-command. For example, use

`voc4cat transform --from-indent --outdir outbox example/photocatalysis_example_indented_prelim-IDs.xlsx`

or if you were using 3 spaces per level (This file does not yet exist.)

`voc4cat transform --from-indent --indent "   " --inplace outbox outbox\photocatalysis_example_prelim-IDs.xlsx`

to convert to ChildrenURI-hierarchy. To create such a file convert for example from ChildrenURI-hierarchy to indentation by

`voc4cat transform --to-indent --indent "   " --outdir outbox example/photocatalysis_example_prelim-IDs.xlsx`

As mentioned above, you can replace all IDs belonging to a given prefix (here `temp`) by numeric IDs e.g. starting from 1001:

`voc4cat transform --make-ids temp 1001 --outdir outbox example/photocatalysis_example_prelim-IDs.xlsx`

This will consistently update all IRIs matching the `temp:`-prefix in the sheets "Concepts", "Additional Concept Features" and "Collections".

Finally, the vocabulary file can be converted from xlsx to SKOS/turtle format.

`voc4cat convert example/photocatalysis_example.xlsx`

A turtle file `photocatalysis_example.ttl` is created in the same directory where the xlsx-file is located.

The reverse is also possible. You can create an xlsx file from a turtle vocabulary file.
Optionally a custom XLSX-template-file can be specified for this conversion:

`voc4cat convert -O outbox --template templates/voc4cat_template_043.xlsx example/photocatalysis_example.ttl`

In addition to `transform` and `convert` voc4cat offers checking and validation under the sub-command `check` and documentation generation under `docs`.
See the command line help for details.

## Feedback and code contributions

We highly appreciate your feedback. Please create an [issue on GitHub](https://github.com/nfdi4cat/voc4cat-tool/issues).

If you plan to contribute code, we suggest to also create an issue first to get early feedback on your ideas before you spend too much time.

By contributing you agree that your contributions fall under the project´s BSD-3-Clause [license](LICENSE).

## Acknowledgement

This work was funded by the German Research Foundation (DFG) through the project "[NFDI4Cat](https://www.nfdi4cat.org) - NFDI for Catalysis-Related Sciences" (DFG project no. [441926934](https://gepris.dfg.de/gepris/projekt/441926934)), within the National Research Data Infrastructure ([NFDI](https://www.nfdi.de)) programme of the Joint Science Conference (GWK).

This project uses the [vocpub](https://w3id.org/profile/vocpub) SHACL profile, which is licensed under the Creative Commons Attribution 4.0 International License (CC-BY 4.0).
The original work was created by [Nicholas J. Car](https://github.com/nicholascar).
A copy of the license can be found at: https://creativecommons.org/licenses/by/4.0/.
Changes were made to the original work for this project.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "voc4cat",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "David Linke <david.linke@catalysis.de>",
    "keywords": "SKOS,linked data,rdf,spreadsheet,vocabulary,xlsx",
    "author": "",
    "author_email": "David Linke <david.linke@catalysis.de>, Peter Philips <peter.philips@surroundaustralia.com>, Nicholas Car <nick@kurrawong.net>, Jamie Feiss <jamie.feiss@surroundaustralia.com>",
    "download_url": "https://files.pythonhosted.org/packages/7c/52/20b20ac3843cd02368e1808b5fdfdc76abc7568efc1d62d8d39fad569eab/voc4cat-0.8.5.tar.gz",
    "platform": null,
    "description": "[![DOI](https://zenodo.org/badge/598213054.svg)](https://zenodo.org/badge/latestdoi/598213054)\n[![](https://github.com/nfdi4cat/voc4cat-tool/workflows/CI/badge.svg)](https://github.com/nfdi4cat/voc4cat-tool/actions)\n[![PyPI - Version](https://img.shields.io/pypi/v/voc4cat)](https://pypi.org/project/voc4cat)\n\n# SKOS vocabulary management with GitHub & Excel\n\n## Overview\n\nFor **[voc4cat](https://github.com/nfdi4cat/voc4cat)**, a term collection for catalysis created in [NFDI4Cat](https://www.nfdi4cat.org), we developed a **toolbox for collaboratively maintaining SKOS vocabularies on GitHub using Excel** (xlsx-files) as user-friendly interface. It consists of several parts:\n\n- **voc4cat-tool** (this package)\n  - A command-line tool to convert vocabularies from Excel to SKOS (turtle/rdf) and validate the vocabulary. Validation includes formal validation with SHACL-profiles but also additional checks. The `voc4cat` tool can be run locally but is also well suited for integration in CI-pipelines. It was inspired by [RDFlib/VocExcel](https://github.com/nfdi4cat/VocExcel). Parts of the vocexcel code base were merged into this repository (see git history).\n- **[voc4cat-template](https://github.com/nfdi4cat/voc4cat-template)**\n  - A github project template for managing SKOS-vocabularies using a GitHub-based workflows including automation by gh-actions.\n- **[voc4cat-playground](https://github.com/nfdi4cat/voc4cat-playground)**\n  - A testbed for playing with the voc4cat workflow. The playground is a test-deployment of the voc4cat-template.\n- **[voc4cat](https://github.com/nfdi4cat/voc4cat)**\n  - A SKOS vocabulary for the catalysis disciplines that uses the voc4cat workflow for real work.\n\n## Command-line tool voc4cat\n\nvoc4cat was mainly developed to be used in gh-actions but it is also useful as a locally installed command line tool. It has the following features.\n\n- Convert between SKOS-vocabularies in Excel/xlsx format and rdf-format (turtle) in both directions.\n- Check/validate SKOS-vocabularies in rdf/turtle format with the [vocpub](https://w3id.org/profile/vocpub) SHACL-profile.\n- Use a vocabulary-configuration file to specify for example ID ranges for each contributor.\n- Check xlsx vocabulary files for errors or incorrect use of IDs (voc4cat uses pydantic for this validation)\n- Generate documentation from SKOS/turtle vocabulary file using [pyLODE](https://github.com/RDFLib/pyLODE) (or [ontospy](http://lambdamusic.github.io/Ontospy/))\n- Express concept-hierarchies in xlsx by indentation.\n- Consistently update all IRIs in the xlsx vocabulary (e.g. with new namespace or IDs)\n\nvoc4cat works on files or folders. If a folder is given all matching files are processed at once.\n\n### Installation requirements\n\nTo start you need:\n\n- Python (3.8 or newer)\n\nvoc4cat is platform independent and should work at least on windows, linux and mac.\n\n### Installation steps\n\nIf you just want to use the command line interface it is strongly suggested to use [pipx](https://pypa.github.io/pipx/) for the installation. `pipx` makes installing and managing python command line application very easy.\n\n`pipx install voc4cat`\n\nAlternatively you can `pip`-install voc4cat like any other Python package.\nTo install including all development tools use `pip install .[dev]` for just the test tools `pip install .[tests]`. For tests we use [pytest](https://docs.pytest.org).\n\n### Typical use\n\nThe available commands and options can be explored via the help system:\n\n`voc4cat --help` (or simply `voc4cat`)\n\nwhich lists all available sub commands. These have their own help, for example:\n\n`voc4cat transform --help`\n\nTo create a new vocabulary use the voc4cat-adjusted template from the `templates` subfolder.\nFor starting you can use simple temporary IRIs like (`ex:my_term`) for your concepts.\nWith voc4cat you can later replace these later by different namespaces and/or different numeric IDs.\n\nThe files used below to demonstrate some commands can be found in the example folder of the [repository](https://github.com/nfdi4cat/voc4cat-tool/).\n\nFor expressing hierarchies in SKOS (\"broader\"/\"narrower\") voc4cat offers two options. One way is to enter a list of children IRIs  (in sheet \"Concepts\"). However, filling the Children URI columns with lists of IRIs can be tedious. Therefore, voc4cat offers a second easier way to express hierarchies between concepts and that is by indentation. voc4Cat understands Excel-indentation (the default) but can also work with other indentation formats (e.g. 3 spaces per level). To switch between the two representations, use the `transform` sub-command. For example, use\n\n`voc4cat transform --from-indent --outdir outbox example/photocatalysis_example_indented_prelim-IDs.xlsx`\n\nor if you were using 3 spaces per level (This file does not yet exist.)\n\n`voc4cat transform --from-indent --indent \"   \" --inplace outbox outbox\\photocatalysis_example_prelim-IDs.xlsx`\n\nto convert to ChildrenURI-hierarchy. To create such a file convert for example from ChildrenURI-hierarchy to indentation by\n\n`voc4cat transform --to-indent --indent \"   \" --outdir outbox example/photocatalysis_example_prelim-IDs.xlsx`\n\nAs mentioned above, you can replace all IDs belonging to a given prefix (here `temp`) by numeric IDs e.g. starting from 1001:\n\n`voc4cat transform --make-ids temp 1001 --outdir outbox example/photocatalysis_example_prelim-IDs.xlsx`\n\nThis will consistently update all IRIs matching the `temp:`-prefix in the sheets \"Concepts\", \"Additional Concept Features\" and \"Collections\".\n\nFinally, the vocabulary file can be converted from xlsx to SKOS/turtle format.\n\n`voc4cat convert example/photocatalysis_example.xlsx`\n\nA turtle file `photocatalysis_example.ttl` is created in the same directory where the xlsx-file is located.\n\nThe reverse is also possible. You can create an xlsx file from a turtle vocabulary file.\nOptionally a custom XLSX-template-file can be specified for this conversion:\n\n`voc4cat convert -O outbox --template templates/voc4cat_template_043.xlsx example/photocatalysis_example.ttl`\n\nIn addition to `transform` and `convert` voc4cat offers checking and validation under the sub-command `check` and documentation generation under `docs`.\nSee the command line help for details.\n\n## Feedback and code contributions\n\nWe highly appreciate your feedback. Please create an [issue on GitHub](https://github.com/nfdi4cat/voc4cat-tool/issues).\n\nIf you plan to contribute code, we suggest to also create an issue first to get early feedback on your ideas before you spend too much time.\n\nBy contributing you agree that your contributions fall under the project\u00b4s BSD-3-Clause [license](LICENSE).\n\n## Acknowledgement\n\nThis work was funded by the German Research Foundation (DFG) through the project \"[NFDI4Cat](https://www.nfdi4cat.org) - NFDI for Catalysis-Related Sciences\" (DFG project no. [441926934](https://gepris.dfg.de/gepris/projekt/441926934)), within the National Research Data Infrastructure ([NFDI](https://www.nfdi.de)) programme of the Joint Science Conference (GWK).\n\nThis project uses the [vocpub](https://w3id.org/profile/vocpub) SHACL profile, which is licensed under the Creative Commons Attribution 4.0 International License (CC-BY 4.0).\nThe original work was created by [Nicholas J. Car](https://github.com/nicholascar).\nA copy of the license can be found at: https://creativecommons.org/licenses/by/4.0/.\nChanges were made to the original work for this project.\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "SKOS vocabulary management tool of NFDI4Cat.",
    "version": "0.8.5",
    "project_urls": {
        "Changelog": "https://github.com/nfdi4cat/voc4cat-tool/blob/main/CHANGELOG.md",
        "Documentation": "https://github.com/nfdi4cat/voc4cat-tool/",
        "Homepage": "https://github.com/nfdi4cat/voc4cat-tool/"
    },
    "split_keywords": [
        "skos",
        "linked data",
        "rdf",
        "spreadsheet",
        "vocabulary",
        "xlsx"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f2c8e73fac581e5ad3b5b0f15a9fa7ecaa3366761389955af238641b49babbf",
                "md5": "b1ac1684c7842dcf5a3bd3ce5815d056",
                "sha256": "6d150aacb466226c278de3acabf6c39aea3fdcd5c1fcc5e380fbdb89888eba1c"
            },
            "downloads": -1,
            "filename": "voc4cat-0.8.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b1ac1684c7842dcf5a3bd3ce5815d056",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 144299,
            "upload_time": "2024-03-09T21:03:00",
            "upload_time_iso_8601": "2024-03-09T21:03:00.319260Z",
            "url": "https://files.pythonhosted.org/packages/6f/2c/8e73fac581e5ad3b5b0f15a9fa7ecaa3366761389955af238641b49babbf/voc4cat-0.8.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c5220b20ac3843cd02368e1808b5fdfdc76abc7568efc1d62d8d39fad569eab",
                "md5": "3006a4fba46d801bb49d5663180e13c3",
                "sha256": "71ba8a70d4e4b1c5a2cd91d53cf3624e9e4504472ad225b3c2b115d49ef24de7"
            },
            "downloads": -1,
            "filename": "voc4cat-0.8.5.tar.gz",
            "has_sig": false,
            "md5_digest": "3006a4fba46d801bb49d5663180e13c3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 214771,
            "upload_time": "2024-03-09T21:03:02",
            "upload_time_iso_8601": "2024-03-09T21:03:02.471114Z",
            "url": "https://files.pythonhosted.org/packages/7c/52/20b20ac3843cd02368e1808b5fdfdc76abc7568efc1d62d8d39fad569eab/voc4cat-0.8.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-09 21:03:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nfdi4cat",
    "github_project": "voc4cat-tool",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "voc4cat"
}
        
Elapsed time: 0.19591s