gitlab2prov


Namegitlab2prov JSON
Version 2.2.0 PyPI version JSON
download
home_page
SummaryExtract provenance information (W3C PROV) from GitLab projects.
upload_time2023-09-05 14:29:15
maintainer
docs_urlNone
author
requires_python>=3.10
licenseMIT License Copyright (c) 2019 German Aerospace Center (DLR) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords prov gitlab git provenance prov generation software analytics w3c prov
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">Welcome to <code>gitlab2prov</code>! 👋</h1>
<p align="center">
  <a href="https://github.com/dlr-sc/gitlab2prov/blob/master/LICENSE">
    <img alt="License: MIT" src="https://img.shields.io/badge/license-MIT-yellow.svg" target="_blank" />
  </a>
  <a href="https://img.shields.io/badge/Made%20with-Python-1f425f.svg">
    <img src="https://img.shields.io/badge/Made%20with-Python-1f425f.svg" alt="Badge: Made with Python"/>
  </a>
  <a href="https://pypi.org/project/gitlab2prov/">
    <img src="https://img.shields.io/pypi/v/gitlab2prov" alt="Badge: PyPi Version">
  </a>
  <a href="https://pypistats.org/packages/gitlab2prov">
    <img src="https://img.shields.io/pypi/dm/gitlab2prov" alt="Badge: PyPi Downloads Monthly">
  </a>
  <a href="https://twitter.com/dlr_software">
    <img alt="Twitter: DLR Software" src="https://img.shields.io/twitter/follow/dlr_software.svg?style=social" target="_blank" />
  </a>
  <a href="https://open.vscode.dev/DLR-SC/gitlab2prov">
    <img alt="Badge: Open in VSCode" src="https://img.shields.io/static/v1?logo=visualstudiocode&label=&message=open%20in%20visual%20studio%20code&labelColor=2c2c32&color=007acc&logoColor=007acc" target="_blank" />
  </a>
  <a href="https://zenodo.org/badge/latestdoi/215042878">
    <img alt="Badge: DOI" src="https://zenodo.org/badge/215042878.svg" target="_blank" />
  </a>
  <a href="https://www.w3.org/TR/prov-overview/">
    <img alt="Badge: W3C PROV" src="https://img.shields.io/static/v1?logo=w3c&label=&message=PROV&labelColor=2c2c32&color=007acc&logoColor=007acc?logoWidth=200" target="_blank" />
  </a>
  <a href="https://citation-file-format.github.io/">
    <img alt="Badge: Citation File Format Inside" src="https://img.shields.io/badge/-citable%20software-green" target="_blank" />
  </a>
</p>


> `gitlab2prov` is a Python library and command line tool that extracts provenance information from GitLab projects.

---

The `gitlab2prov` data model has been designed according to [W3C PROV](https://www.w3.org/TR/prov-overview/) specification.
The model documentation can be found [here](https://github.com/DLR-SC/gitlab2prov/tree/master/docs).

## ️🏗️ ️Installation

Please note that this tool requires Git to be installed on your machine.

Clone the project and install using `pip`:
```bash
pip install .
```

Or install the latest release from [PyPi](https://pypi.org/project/gitlab2prov/):
```bash
pip install gitlab2prov
```

To install `gitlab2prov` with all extra dependencies require the `[dev]` extras:
```bash
pip install .[dev]            # clone repo, install with extras
pip install gitlab2prov[dev]  # PyPi, install with extras
```

## ⚡ Getting started

`gitlab2prov` needs a [personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html) to clone git repositories and to authenticate with the GitLab API.
Follow [this guide](./docs/guides/tokens.md) to create an access token with the required [scopes](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html#personal-access-token-scopes).


## 🚀‍ Usage

`gitlab2prov` can be configured using the command line interface or by providing a configuration file in `.yaml` format.

###  Command Line Usage
The command line interface consists of commands that can be chained together like a unix pipeline.

```
Usage: gitlab2prov [OPTIONS] COMMAND1 [ARGS]... [COMMAND2 [ARGS]...]...

  Extract provenance information from GitLab projects.

Options:
  --version        Show the version and exit.
  --verbose        Enable logging to 'gitlab2prov.log'.
  --config FILE    Read config from file.
  --validate FILE  Validate config file and exit.
  --help           Show this message and exit.

Commands:
  combine                  Combine multiple graphs into one.
  extract                  Extract provenance information for one or more...
  load                     Load provenance files.
  merge-duplicated-agents  Merge duplicated agents based on a name to...
  pseudonymize             Pseudonymize a provenance graph.
  save                     Save provenance information to a file.
  stats                    Print statistics such as node counts and...
```

### Configuration Files
`gitlab2prov` supports configuration files in `.yaml` format that are functionally equivalent to command line invocations. 

To read configuration details from a file instead of specifying on the command line, use the `--config` option:
```ini
# initiate a run using a config file
gitlab2prov --config config/example.yaml
```
You can validate your config file using the provided JSON-Schema `gitlab2prov/config/schema.json` that comes packaged with every installation:
```ini
# check config file for syntactical errors
gitlab2prov --validate config/example.yaml
```

Config file example:

```yaml
- extract:
        url: ["https://gitlab.com/example/foo"]
        token: tokenA
- extract:
        url: ["https://gitlab.com/example/bar"]
        token: tokenB
- load:
        input: [example.rdf]
- pseudonymize:
- combine:
- save:
        output: combined
        format: [json, rdf, xml, dot]
- stats:
        fine: true
        explain: true
        formatter: table
```

The config file example is functionally equivalent to this command line invocation:

```
gitlab2prov extract -u https://gitlab.com/example/foo -t tokenFoo \
            extract -u https://gitlab.com/example/bar -t tokenBar \
            load -i example.rdf                                   \
            pseudonymize                                          \
            combine                                               \
            save -o combined -f json -f rdf -f xml -f dot         \
            stats --fine --explain --formatter table
```

### 🎨 Provenance Output Formats

`gitlab2prov` supports output formats that the [`prov`](https://github.com/trungdong/prov) library provides:
* [PROV-N](http://www.w3.org/TR/prov-n/)
* [PROV-O](http://www.w3.org/TR/prov-o/) (RDF)
* [PROV-XML](http://www.w3.org/TR/prov-xml/)
* [PROV-JSON](http://www.w3.org/Submission/prov-json/)
* [Graphviz](https://graphviz.org/) (DOT)

## 🤝 Contributing

Contributions and pull requests are welcome!  
For major changes, please open an issue first to discuss what you would like to change.

## ✨ How to cite

If you use GitLab2PROV in a scientific publication, we would appreciate citations to the following paper:

* Schreiber, A., de Boer, C. and von Kurnatowski, L. (2021). [GitLab2PROV—Provenance of Software Projects hosted on GitLab](https://www.usenix.org/conference/tapp2021/presentation/schreiber). 13th International Workshop on Theory and Practice of Provenance (TaPP 2021), USENIX Association

Bibtex entry:

```BibTeX
@InProceedings{SchreiberBoerKurnatowski2021,
  author    = {Andreas Schreiber and Claas de~Boer and Lynn von~Kurnatowski},
  booktitle = {13th International Workshop on Theory and Practice of Provenance (TaPP 2021)},
  title     = {{GitLab2PROV}{\textemdash}Provenance of Software Projects hosted on GitLab},
  year      = {2021},
  month     = jul,
  publisher = {{USENIX} Association},
  url       = {https://www.usenix.org/conference/tapp2021/presentation/schreiber},
}
```

You can also cite specific releases published on Zenodo: [![DOI](https://zenodo.org/badge/215042878.svg)](https://zenodo.org/badge/latestdoi/215042878)

## ✏️ References

**Influencial Software for `gitlab2prov`**
* Martin Stoffers: "Gitlab2Graph", v1.0.0, October 13. 2019, [GitHub Link](https://github.com/DLR-SC/Gitlab2Graph), DOI 10.5281/zenodo.3469385

* Quentin Pradet: "How do you rate limit calls with aiohttp?", [GitHub Gist](https://gist.github.com/pquentin/5d8f5408cdad73e589d85ba509091741), MIT LICENSE

**Influencial Papers for `gitlab2prov`**:

* De Nies, T., Magliacane, S., Verborgh, R., Coppens, S., Groth, P., Mannens, E., and Van de Walle, R. (2013). [Git2PROV: Exposing Version Control System Content as W3C PROV](https://dl.acm.org/doi/abs/10.5555/2874399.2874431). In *Poster and Demo Proceedings of the 12th International Semantic Web Conference* (Vol. 1035, pp. 125–128).

* Packer, H. S., Chapman, A., and Carr, L. (2019). [GitHub2PROV: provenance for supporting software project management](https://dl.acm.org/doi/10.5555/3359032.3359039). In *11th International Workshop on Theory and Practice of Provenance (TaPP 2019)*.

**Papers that refer to `gitlab2prov`**:

* Andreas Schreiber, Claas de Boer (2020). [Modelling Knowledge about Software Processes using Provenance Graphs and its Application to Git-based VersionControl Systems](https://dl.acm.org/doi/10.1145/3387940.3392220). In *ICSEW'20: Proceedings of the IEEE/ACM 42nd Conference on Software Engineering Workshops* (pp. 358–359).

* Tim Sonnekalb, Thomas S. Heinze, Lynn von Kurnatowski, Andreas Schreiber, Jesus M. Gonzalez-Barahona, and Heather Packer (2020). [Towards automated, provenance-driven security audit for git-based repositories: applied to germany's corona-warn-app: vision paper](https://doi.org/10.1145/3416507.3423190). In *Proceedings of the 3rd ACM SIGSOFT International Workshop on Software Security from Design to Deployment* (pp. 15–18).

* Andreas Schreiber (2020). [Visualization of contributions to open-source projects](https://doi.org/10.1145/3430036.3430057). In *Proceedings of the 13th International Symposium on Visual Information Communication and Interaction*. ACM, USA.

## 📜 Dependencies 
`gitlab2prov` depends on several open source packages that are made freely available under their respective licenses.

| Package                                                         | License                                                                                                                   |
| --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
| [GitPython](https://github.com/gitpython-developers/GitPython)  | [![License](https://img.shields.io/badge/License-BSD_3--Clause-orange.svg)](https://opensource.org/licenses/BSD-3-Clause) |
| [click](https://github.com/pallets/click)                       | [![License](https://img.shields.io/badge/License-BSD_3--Clause-orange.svg)](https://opensource.org/licenses/BSD-3-Clause) |
| [python-gitlab](https://github.com/python-gitlab/python-gitlab) | [![License: LGPL v3](https://img.shields.io/badge/License-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)       |
| [prov](https://pypi.org/project/prov/)                          | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)               |
| [jsonschema](https://github.com/python-jsonschema/jsonschema)   | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)               |
| [ruamel.yaml](https://pypi.org/project/ruamel.yaml/)            | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)               |
| [pydot](https://github.com/pydot/pydot)                         | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)               |

## 📝 License
This project is [MIT](https://github.com/dlr-sc/gitlab2prov/blob/master/LICENSE) licensed.  
Copyright © 2019 German Aerospace Center (DLR) and individual contributors.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "gitlab2prov",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "Andreas Schreiber <andreas.schreiber@dlr.de>",
    "keywords": "prov,gitlab,git,provenance,prov generation,software analytics,w3c prov",
    "author": "",
    "author_email": "Claas de Boer <claas.deboer@dlr.de>",
    "download_url": "https://files.pythonhosted.org/packages/e6/a9/e33ed1a2d880c0e0bfe2d3296e3a1ea39a54d3c47085a32ec9b8253bcab1/gitlab2prov-2.2.0.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">Welcome to <code>gitlab2prov</code>! \ud83d\udc4b</h1>\n<p align=\"center\">\n  <a href=\"https://github.com/dlr-sc/gitlab2prov/blob/master/LICENSE\">\n    <img alt=\"License: MIT\" src=\"https://img.shields.io/badge/license-MIT-yellow.svg\" target=\"_blank\" />\n  </a>\n  <a href=\"https://img.shields.io/badge/Made%20with-Python-1f425f.svg\">\n    <img src=\"https://img.shields.io/badge/Made%20with-Python-1f425f.svg\" alt=\"Badge: Made with Python\"/>\n  </a>\n  <a href=\"https://pypi.org/project/gitlab2prov/\">\n    <img src=\"https://img.shields.io/pypi/v/gitlab2prov\" alt=\"Badge: PyPi Version\">\n  </a>\n  <a href=\"https://pypistats.org/packages/gitlab2prov\">\n    <img src=\"https://img.shields.io/pypi/dm/gitlab2prov\" alt=\"Badge: PyPi Downloads Monthly\">\n  </a>\n  <a href=\"https://twitter.com/dlr_software\">\n    <img alt=\"Twitter: DLR Software\" src=\"https://img.shields.io/twitter/follow/dlr_software.svg?style=social\" target=\"_blank\" />\n  </a>\n  <a href=\"https://open.vscode.dev/DLR-SC/gitlab2prov\">\n    <img alt=\"Badge: Open in VSCode\" src=\"https://img.shields.io/static/v1?logo=visualstudiocode&label=&message=open%20in%20visual%20studio%20code&labelColor=2c2c32&color=007acc&logoColor=007acc\" target=\"_blank\" />\n  </a>\n  <a href=\"https://zenodo.org/badge/latestdoi/215042878\">\n    <img alt=\"Badge: DOI\" src=\"https://zenodo.org/badge/215042878.svg\" target=\"_blank\" />\n  </a>\n  <a href=\"https://www.w3.org/TR/prov-overview/\">\n    <img alt=\"Badge: W3C PROV\" src=\"https://img.shields.io/static/v1?logo=w3c&label=&message=PROV&labelColor=2c2c32&color=007acc&logoColor=007acc?logoWidth=200\" target=\"_blank\" />\n  </a>\n  <a href=\"https://citation-file-format.github.io/\">\n    <img alt=\"Badge: Citation File Format Inside\" src=\"https://img.shields.io/badge/-citable%20software-green\" target=\"_blank\" />\n  </a>\n</p>\n\n\n> `gitlab2prov` is a Python library and command line tool that extracts provenance information from GitLab projects.\n\n---\n\nThe `gitlab2prov` data model has been designed according to [W3C PROV](https://www.w3.org/TR/prov-overview/) specification.\nThe model documentation can be found [here](https://github.com/DLR-SC/gitlab2prov/tree/master/docs).\n\n## \ufe0f\ud83c\udfd7\ufe0f \ufe0fInstallation\n\nPlease note that this tool requires Git to be installed on your machine.\n\nClone the project and install using `pip`:\n```bash\npip install .\n```\n\nOr install the latest release from [PyPi](https://pypi.org/project/gitlab2prov/):\n```bash\npip install gitlab2prov\n```\n\nTo install `gitlab2prov` with all extra dependencies require the `[dev]` extras:\n```bash\npip install .[dev]            # clone repo, install with extras\npip install gitlab2prov[dev]  # PyPi, install with extras\n```\n\n## \u26a1 Getting started\n\n`gitlab2prov` needs a [personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html) to clone git repositories and to authenticate with the GitLab API.\nFollow [this guide](./docs/guides/tokens.md) to create an access token with the required [scopes](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html#personal-access-token-scopes).\n\n\n## \ud83d\ude80\u200d Usage\n\n`gitlab2prov` can be configured using the command line interface or by providing a configuration file in `.yaml` format.\n\n###  Command Line Usage\nThe command line interface consists of commands that can be chained together like a unix pipeline.\n\n```\nUsage: gitlab2prov [OPTIONS] COMMAND1 [ARGS]... [COMMAND2 [ARGS]...]...\n\n  Extract provenance information from GitLab projects.\n\nOptions:\n  --version        Show the version and exit.\n  --verbose        Enable logging to 'gitlab2prov.log'.\n  --config FILE    Read config from file.\n  --validate FILE  Validate config file and exit.\n  --help           Show this message and exit.\n\nCommands:\n  combine                  Combine multiple graphs into one.\n  extract                  Extract provenance information for one or more...\n  load                     Load provenance files.\n  merge-duplicated-agents  Merge duplicated agents based on a name to...\n  pseudonymize             Pseudonymize a provenance graph.\n  save                     Save provenance information to a file.\n  stats                    Print statistics such as node counts and...\n```\n\n### Configuration Files\n`gitlab2prov` supports configuration files in `.yaml` format that are functionally equivalent to command line invocations. \n\nTo read configuration details from a file instead of specifying on the command line, use the `--config` option:\n```ini\n# initiate a run using a config file\ngitlab2prov --config config/example.yaml\n```\nYou can validate your config file using the provided JSON-Schema `gitlab2prov/config/schema.json` that comes packaged with every installation:\n```ini\n# check config file for syntactical errors\ngitlab2prov --validate config/example.yaml\n```\n\nConfig file example:\n\n```yaml\n- extract:\n        url: [\"https://gitlab.com/example/foo\"]\n        token: tokenA\n- extract:\n        url: [\"https://gitlab.com/example/bar\"]\n        token: tokenB\n- load:\n        input: [example.rdf]\n- pseudonymize:\n- combine:\n- save:\n        output: combined\n        format: [json, rdf, xml, dot]\n- stats:\n        fine: true\n        explain: true\n        formatter: table\n```\n\nThe config file example is functionally equivalent to this command line invocation:\n\n```\ngitlab2prov extract -u https://gitlab.com/example/foo -t tokenFoo \\\n            extract -u https://gitlab.com/example/bar -t tokenBar \\\n            load -i example.rdf                                   \\\n            pseudonymize                                          \\\n            combine                                               \\\n            save -o combined -f json -f rdf -f xml -f dot         \\\n            stats --fine --explain --formatter table\n```\n\n### \ud83c\udfa8 Provenance Output Formats\n\n`gitlab2prov` supports output formats that the [`prov`](https://github.com/trungdong/prov) library provides:\n* [PROV-N](http://www.w3.org/TR/prov-n/)\n* [PROV-O](http://www.w3.org/TR/prov-o/) (RDF)\n* [PROV-XML](http://www.w3.org/TR/prov-xml/)\n* [PROV-JSON](http://www.w3.org/Submission/prov-json/)\n* [Graphviz](https://graphviz.org/) (DOT)\n\n## \ud83e\udd1d Contributing\n\nContributions and pull requests are welcome!  \nFor major changes, please open an issue first to discuss what you would like to change.\n\n## \u2728 How to cite\n\nIf you use GitLab2PROV in a scientific publication, we would appreciate citations to the following paper:\n\n* Schreiber, A., de Boer, C. and von Kurnatowski, L. (2021). [GitLab2PROV\u2014Provenance of Software Projects hosted on GitLab](https://www.usenix.org/conference/tapp2021/presentation/schreiber). 13th International Workshop on Theory and Practice of Provenance (TaPP 2021), USENIX Association\n\nBibtex entry:\n\n```BibTeX\n@InProceedings{SchreiberBoerKurnatowski2021,\n  author    = {Andreas Schreiber and Claas de~Boer and Lynn von~Kurnatowski},\n  booktitle = {13th International Workshop on Theory and Practice of Provenance (TaPP 2021)},\n  title     = {{GitLab2PROV}{\\textemdash}Provenance of Software Projects hosted on GitLab},\n  year      = {2021},\n  month     = jul,\n  publisher = {{USENIX} Association},\n  url       = {https://www.usenix.org/conference/tapp2021/presentation/schreiber},\n}\n```\n\nYou can also cite specific releases published on Zenodo: [![DOI](https://zenodo.org/badge/215042878.svg)](https://zenodo.org/badge/latestdoi/215042878)\n\n## \u270f\ufe0f References\n\n**Influencial Software for `gitlab2prov`**\n* Martin Stoffers: \"Gitlab2Graph\", v1.0.0, October 13. 2019, [GitHub Link](https://github.com/DLR-SC/Gitlab2Graph), DOI 10.5281/zenodo.3469385\n\n* Quentin Pradet: \"How do you rate limit calls with aiohttp?\", [GitHub Gist](https://gist.github.com/pquentin/5d8f5408cdad73e589d85ba509091741), MIT LICENSE\n\n**Influencial Papers for `gitlab2prov`**:\n\n* De Nies, T., Magliacane, S., Verborgh, R., Coppens, S., Groth, P., Mannens, E., and Van de Walle, R. (2013). [Git2PROV: Exposing Version Control System Content as W3C PROV](https://dl.acm.org/doi/abs/10.5555/2874399.2874431). In *Poster and Demo Proceedings of the 12th International Semantic Web Conference* (Vol. 1035, pp. 125\u2013128).\n\n* Packer, H. S., Chapman, A., and Carr, L. (2019). [GitHub2PROV: provenance for supporting software project management](https://dl.acm.org/doi/10.5555/3359032.3359039). In *11th International Workshop on Theory and Practice of Provenance (TaPP 2019)*.\n\n**Papers that refer to `gitlab2prov`**:\n\n* Andreas Schreiber, Claas de Boer (2020). [Modelling Knowledge about Software Processes using Provenance Graphs and its Application to Git-based VersionControl Systems](https://dl.acm.org/doi/10.1145/3387940.3392220). In *ICSEW'20: Proceedings of the IEEE/ACM 42nd Conference on Software Engineering Workshops* (pp. 358\u2013359).\n\n* Tim Sonnekalb, Thomas S. Heinze, Lynn von Kurnatowski, Andreas Schreiber, Jesus M. Gonzalez-Barahona, and Heather Packer (2020). [Towards automated, provenance-driven security audit for git-based repositories: applied to germany's corona-warn-app: vision paper](https://doi.org/10.1145/3416507.3423190). In *Proceedings of the 3rd ACM SIGSOFT International Workshop on Software Security from Design to Deployment* (pp. 15\u201318).\n\n* Andreas Schreiber (2020). [Visualization of contributions to open-source projects](https://doi.org/10.1145/3430036.3430057). In *Proceedings of the 13th International Symposium on Visual Information Communication and Interaction*. ACM, USA.\n\n## \ud83d\udcdc Dependencies \n`gitlab2prov` depends on several open source packages that are made freely available under their respective licenses.\n\n| Package                                                         | License                                                                                                                   |\n| --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |\n| [GitPython](https://github.com/gitpython-developers/GitPython)  | [![License](https://img.shields.io/badge/License-BSD_3--Clause-orange.svg)](https://opensource.org/licenses/BSD-3-Clause) |\n| [click](https://github.com/pallets/click)                       | [![License](https://img.shields.io/badge/License-BSD_3--Clause-orange.svg)](https://opensource.org/licenses/BSD-3-Clause) |\n| [python-gitlab](https://github.com/python-gitlab/python-gitlab) | [![License: LGPL v3](https://img.shields.io/badge/License-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)       |\n| [prov](https://pypi.org/project/prov/)                          | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)               |\n| [jsonschema](https://github.com/python-jsonschema/jsonschema)   | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)               |\n| [ruamel.yaml](https://pypi.org/project/ruamel.yaml/)            | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)               |\n| [pydot](https://github.com/pydot/pydot)                         | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)               |\n\n## \ud83d\udcdd License\nThis project is [MIT](https://github.com/dlr-sc/gitlab2prov/blob/master/LICENSE) licensed.  \nCopyright \u00a9 2019 German Aerospace Center (DLR) and individual contributors.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2019 German Aerospace Center (DLR)  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Extract provenance information (W3C PROV) from GitLab projects.",
    "version": "2.2.0",
    "project_urls": {
        "Issue Tracker": "https://github.com/dlr-sc/gitlab2prov/issues",
        "Source Code": "https://github.com/dlr-sc/gitlab2prov",
        "Twitter": "https://twitter.com/dlr_software"
    },
    "split_keywords": [
        "prov",
        "gitlab",
        "git",
        "provenance",
        "prov generation",
        "software analytics",
        "w3c prov"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1666b8647c03aff8574f9c8dfb7e3356e0e0b4d1712bac3c651a906a0787c5c5",
                "md5": "4d6eebe25ef2d497837c3697bb3374b5",
                "sha256": "6f62f656dd2143eb653c84c292ea68a128b76b8a7823527316af0a7396653ba3"
            },
            "downloads": -1,
            "filename": "gitlab2prov-2.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4d6eebe25ef2d497837c3697bb3374b5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 33844,
            "upload_time": "2023-09-05T14:29:12",
            "upload_time_iso_8601": "2023-09-05T14:29:12.852037Z",
            "url": "https://files.pythonhosted.org/packages/16/66/b8647c03aff8574f9c8dfb7e3356e0e0b4d1712bac3c651a906a0787c5c5/gitlab2prov-2.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6a9e33ed1a2d880c0e0bfe2d3296e3a1ea39a54d3c47085a32ec9b8253bcab1",
                "md5": "1c72db74ed207749694f9a3ace7d75a3",
                "sha256": "9695a31dc0ce34382f28aabd6c4b425e68b2f23bee2e131abba2a3fbd6a1ba2c"
            },
            "downloads": -1,
            "filename": "gitlab2prov-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1c72db74ed207749694f9a3ace7d75a3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 32337,
            "upload_time": "2023-09-05T14:29:15",
            "upload_time_iso_8601": "2023-09-05T14:29:15.222567Z",
            "url": "https://files.pythonhosted.org/packages/e6/a9/e33ed1a2d880c0e0bfe2d3296e3a1ea39a54d3c47085a32ec9b8253bcab1/gitlab2prov-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-05 14:29:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dlr-sc",
    "github_project": "gitlab2prov",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gitlab2prov"
}
        
Elapsed time: 0.11773s