graph-validation-tests


Namegraph-validation-tests JSON
Version 0.0.11 PyPI version JSON
download
home_pagehttps://github.com/TranslatorSRI
SummaryValidation of Translator Knowledge Graphs - TRAPI, Biolink Model and One Hop navigation
upload_time2024-05-02 05:12:01
maintainerRichard Bruskiewich
docs_urlNone
authorRichard Bruskiewich
requires_python<3.12,>=3.9
licenseMIT
keywords ncats biomedical data translator translator reasonerapi trapi validation biolink model
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Graph Validation Tests

[![Pyversions](https://img.shields.io/pypi/pyversions/reasoner-validator)](https://pypi.python.org/pypi/OneHopTests)
[![Publish Python Package](https://github.com/TranslatorSRI/OneHopTests/actions/workflows/python-publish.yml/badge.svg)](https://pypi.org/project/OneHopTests/)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![Run tests](https://github.com/TranslatorSRI/OneHopTests/actions/workflows/test.yml/badge.svg)](https://github.com/TranslatorSRI/OneHopTests/actions/workflows/test.yml)


This repository provides the implementation of Translator knowledge graph validation test runners within the new 2023 Testing Infrastructure.  The current package currently contains two such test runners:

- **StandardsValidationTest:** is a wrapper of the [Translator reasoner-validator package](https://github.com/NCATSTranslator/reasoner-validator) which certifies that knowledge graph data access is TRAPI compliant and the graph semantic content is Biolink Model compliant.
- **OneHopTest:** is a slimmed down excerpt of "One Hop" knowledge graph navigation unit test code from the legacy [SRI_Testing test harness](https://github.com/TranslatorSRI/SRI_testing), code which validates that single hop TRAPI lookup queries on a Translator knowledge graph, meet basic expectation of input test edge data recovery in the output, using several diverse kinds of templated TRAPI queries. Unlike **SR_Testing**, the **OneHopTest** module retrieves its test data directly from the new [NCATS Translator Tests](https://github.com/NCATSTranslator/Tests) repository. 

Programmatically, the command line or programmatic parameters to each kind of test are identical, but the underlying Test Cases (derived from the source Test Assets) is the same.

## Usage

The **StandardsValidationTest** and **OneHopTest** test runners may be run directly from the command line or programmatically, from within a Python script.

### Installation

The **graph-validation-tests** module can be installed from pypi and used as part of the Translator-wide automated testing.

_Note: Requires 3.9 <= Python release <= 3.12_

#### From Pypi

From within your target working directory:

- Create a python virtual environment: `python -m venv venv`
- Activate your environment: `. ./venv/bin/activate`
- Install dependencies: `pip install graph-validation-tests`

then proceed with [command line execution](#cli) or [script level execution](#programmatic-level-execution).

#### From GitHub

You can also check out the project from GitHub. If you do that, the installation process will be slightly different, since the project itself uses [Poetry](https://python-poetry.org/) for dependency management - the following instructions assume that you've [installed Poetry on your system](https://python-poetry.org/docs/#installation).

- Check out the code: `git checkout https://github.com/TranslatorSRI/graph-validation-tests.git`
- Create a Poetry shell: `poetry shell`
- Install dependencies: `poetry install`

then proceed with [command line execution](#cli) or [script level execution](#programmatic-level-execution).

### CLI

Within a command line terminal, type:

```shell
$ standards_validation_test --help
```
or

```shell
$ one_hop_test --help
```

should give usage instructions as follows (where <tool name> is either 'standards_validation_test' or 'one_hop_test'):

```shell
usage: <tool name> [-h] [--components COMPONENTS] [--environment {dev,ci,test,prod}] --subject_id SUBJECT_ID --predicate_id PREDICATE_ID
                                 --object_id OBJECT_ID [--trapi_version TRAPI_VERSION] [--biolink_version BIOLINK_VERSION]
                                 [--log_level {ERROR,WARNING,INFO,DEBUG}]

Translator TRAPI and Biolink Model Validation of Knowledge Graphs

options:
  -h, --help            show this help message and exit
  --components COMPONENTS
                        Names Translator components to be tested taken from the Translator Testing Model 'ComponentEnum' 
                        (may be a comma separated string of such names; default: run the test against the 'ars')
  --environment {dev,ci,test,prod}
                        Translator execution environment of the Translator Component targeted for testing.
  --subject_id SUBJECT_ID
                        Statement object concept CURIE
  --predicate_id PREDICATE_ID
                        Statement Biolink Predicate identifier
  --object_id OBJECT_ID
                        Statement object concept CURIE
  --trapi_version TRAPI_VERSION
                        TRAPI version expected for knowledge graph access (default: use current default release)
  --biolink_version BIOLINK_VERSION
                        Biolink Model version expected for knowledge graph access (default: use current default release)
```

### Programmatic Level Execution

### Standards Validation Test

To run TRAPI and Biolink Model validation tests validating query outputs from a knowledge graph TRAPI component:

```python
from typing import Dict
import asyncio
from translator_testing_model.datamodel.pydanticmodel import ComponentEnum
from standards_validation_test import run_standards_validation_tests

test_data = {
    # One test edge (asset)
    "subject_id": "DRUGBANK:DB01592",
    "subject_category": "biolink:SmallMolecule",
    "predicate_id": "biolink:has_side_effect",
    "object_id": "MONDO:0011426",
    "object_category": "biolink:Disease",
    "components": [
            ComponentEnum("arax"),
            ComponentEnum("molepro")
    ]
    # "environment": environment, # Optional[TestEnvEnum] = None; default: 'TestEnvEnum.ci' if not given
    # "trapi_version": trapi_version,  # Optional[str] = None; latest community release if not given
    # "biolink_version": biolink_version,  # Optional[str] = None; current Biolink Toolkit default if not given
    # "runner_settings": asset.test_runner_settings,  # Optional[List[str]] = None
}
results: Dict = asyncio.run(run_standards_validation_tests(**test_data))
print(results)
```

### OneHopTest

To run "One Hop" knowledge graph navigation tests validating query outputs from a knowledge graph TRAPI component:

```python
from typing import Dict
import asyncio
from translator_testing_model.datamodel.pydanticmodel import ComponentEnum
from one_hop_test import run_one_hop_tests

test_data = {
    # One test edge (asset)
    "subject_id": "DRUGBANK:DB01592",
    "subject_category": "biolink:SmallMolecule",
    "predicate_id": "biolink:has_side_effect",
    "object_id": "MONDO:0011426",
    "object_category": "biolink:Disease",
    "components": [
            ComponentEnum("arax"),
            ComponentEnum("molepro")
    ]
    #
    #     "environment": environment, # Optional[TestEnvEnum] = None; default: 'TestEnvEnum.ci' if not given
    #     "trapi_version": trapi_version,  # Optional[str] = None; latest community release if not given
    #     "biolink_version": biolink_version,  # Optional[str] = None; current Biolink Toolkit default if not given
    #     "runner_settings": asset.test_runner_settings,  # Optional[List[str]] = None
}
results: Dict = asyncio.run(run_one_hop_tests(**test_data))
print(results)
```

The above wrapper method runs all related TestCases derived from the specified TestAsset (i.e. subject_id, etc.) without any special test parameters. If more fine-grained testing is desired, a subset of the underlying TRAPI queries can be run directly, something like this (here, we ignore the TestCases 'by_subject', 'inverse_by_new_subject' and 'by_object', and specify the 'strict_validation' parameter of True to Biolink Model validation, as understood by the **reasoner-validator** code running behind the scenes):

```python
from typing import Dict
import asyncio
from standards_validation_test import StandardsValidationTest
from translator_testing_model.datamodel.pydanticmodel import TestEnvEnum, ComponentEnum
from graph_validation_test.utils.unit_test_templates import (
    # by_subject,
    # inverse_by_new_subject,
    # by_object,
    raise_subject_entity,
    raise_object_entity,
    raise_object_by_subject,
    raise_predicate_by_subject
)

test_data = {
    # One test edge (asset)
    "subject_id": "DRUGBANK:DB01592",
    "subject_category": "biolink:SmallMolecule",
    "predicate_id": "biolink:has_side_effect",
    "object_id": "MONDO:0011426",
    "object_category": "biolink:Disease",
    "components": [
            ComponentEnum("arax"),
            ComponentEnum("molepro")
    ],
    "environment": TestEnvEnum.test,
    "trapi_version": "1.5.0-beta",
    "biolink_version": "4.1.6",
    "runner_settings": "Inferred"
}
trapi_generators = [
    # by_subject,
    # inverse_by_new_subject,
    # by_object,
    raise_subject_entity,
    raise_object_entity,
    raise_object_by_subject,
    raise_predicate_by_subject
]

# A test runner specific parameter passed through
kwargs = {
    "strict_validation": True
}
results: Dict = asyncio.run(StandardsValidationTest.run_tests(
    **test_data, trapi_generators=trapi_generators, **kwargs)
)
```

Note that the trapi_generation variables - defined in the **graph_validation_test.utils.unit_test_templates** module - are all simply Python functions returning TRAPI JSON messages to send to the target components. In principle, if one understands what those functions are doing, you could write your own methods to do other kinds of TRAPI queries whose output can then be validated against the specified TRAPI and Biolink Model releases.

### Sample Output

This is a sample of what the JSON output from test runs currently looks like (this sample came from a OneHopTest run).

```json
{    
    "pks": {
        "molepro": "molepro"
    },
    "results": {
        "TestAsset_1-by_subject": {
            "molepro": {
                "status": "FAILED",
                "messages": {
                    "error": {
                        "error.trapi.response.knowledge_graph.missing_expected_edge": {
                            "global": {
                                "TestAsset_1|(CHEBI:58579#biolink:SmallMolecule)-[biolink:is_active_metabolite_of]->(UniProtKB:Q9NQ88#biolink:Protein)": null
                            }
                        }
                    }
                }
            }
        },
        "TestAsset_1-inverse_by_new_subject": {
            "molepro": {
                "status": "FAILED",
                "messages": {
                    "critical": {
                        "critical.trapi.request.invalid": {
                            "global": {
                                "predicate 'biolink:is_active_metabolite_of'": [
                                    {
                                        "context": "inverse_by_new_subject",
                                        "reason": "is an unknown or has no inverse?"
                                    }
                                ]
                            }
                        }
                    }
                }
            }
        },
        # etc...
}
```

## Releases

A [full change log](CHANGELOG.md) is provided documenting each release, but we summarize key release limitations here:

### v0.0.\* Releases

- This initial code release only supports testing of [Translator SmartAPI Registry](https://smart-api.info/registry/translator) catalogued components which are TRAPI implementations for Translator Autonomous Relay Agent (ARA) and Knowledge Providers (KP), but _not_ direct testing of the Translator Autonomous Relay System (ARS) or Translator user interface (UI)
- Standards validation tests currently calls release 4.0.0 of the [reasoner-validator](https://github.com/NCATSTranslator/reasoner-validator), which is currently limited to TRAPI release 1.4.2 validation (not yet the recent TRAPI 1.5.0 releases)


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/TranslatorSRI",
    "name": "graph-validation-tests",
    "maintainer": "Richard Bruskiewich",
    "docs_url": null,
    "requires_python": "<3.12,>=3.9",
    "maintainer_email": "richard.bruskiewich@delphinai.com",
    "keywords": "NCATS, Biomedical Data Translator, Translator, ReasonerAPI, TRAPI, validation, Biolink Model",
    "author": "Richard Bruskiewich",
    "author_email": "richard.bruskiewich@delphinai.com",
    "download_url": "https://files.pythonhosted.org/packages/8a/f8/fa53bc673a890055d0bc2c26ec9783dc97075675a705735d6b76902ff305/graph_validation_tests-0.0.11.tar.gz",
    "platform": null,
    "description": "# Graph Validation Tests\n\n[![Pyversions](https://img.shields.io/pypi/pyversions/reasoner-validator)](https://pypi.python.org/pypi/OneHopTests)\n[![Publish Python Package](https://github.com/TranslatorSRI/OneHopTests/actions/workflows/python-publish.yml/badge.svg)](https://pypi.org/project/OneHopTests/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![Run tests](https://github.com/TranslatorSRI/OneHopTests/actions/workflows/test.yml/badge.svg)](https://github.com/TranslatorSRI/OneHopTests/actions/workflows/test.yml)\n\n\nThis repository provides the implementation of Translator knowledge graph validation test runners within the new 2023 Testing Infrastructure.  The current package currently contains two such test runners:\n\n- **StandardsValidationTest:** is a wrapper of the [Translator reasoner-validator package](https://github.com/NCATSTranslator/reasoner-validator) which certifies that knowledge graph data access is TRAPI compliant and the graph semantic content is Biolink Model compliant.\n- **OneHopTest:** is a slimmed down excerpt of \"One Hop\" knowledge graph navigation unit test code from the legacy [SRI_Testing test harness](https://github.com/TranslatorSRI/SRI_testing), code which validates that single hop TRAPI lookup queries on a Translator knowledge graph, meet basic expectation of input test edge data recovery in the output, using several diverse kinds of templated TRAPI queries. Unlike **SR_Testing**, the **OneHopTest** module retrieves its test data directly from the new [NCATS Translator Tests](https://github.com/NCATSTranslator/Tests) repository. \n\nProgrammatically, the command line or programmatic parameters to each kind of test are identical, but the underlying Test Cases (derived from the source Test Assets) is the same.\n\n## Usage\n\nThe **StandardsValidationTest** and **OneHopTest** test runners may be run directly from the command line or programmatically, from within a Python script.\n\n### Installation\n\nThe **graph-validation-tests** module can be installed from pypi and used as part of the Translator-wide automated testing.\n\n_Note: Requires 3.9 <= Python release <= 3.12_\n\n#### From Pypi\n\nFrom within your target working directory:\n\n- Create a python virtual environment: `python -m venv venv`\n- Activate your environment: `. ./venv/bin/activate`\n- Install dependencies: `pip install graph-validation-tests`\n\nthen proceed with [command line execution](#cli) or [script level execution](#programmatic-level-execution).\n\n#### From GitHub\n\nYou can also check out the project from GitHub. If you do that, the installation process will be slightly different, since the project itself uses [Poetry](https://python-poetry.org/) for dependency management - the following instructions assume that you've [installed Poetry on your system](https://python-poetry.org/docs/#installation).\n\n- Check out the code: `git checkout https://github.com/TranslatorSRI/graph-validation-tests.git`\n- Create a Poetry shell: `poetry shell`\n- Install dependencies: `poetry install`\n\nthen proceed with [command line execution](#cli) or [script level execution](#programmatic-level-execution).\n\n### CLI\n\nWithin a command line terminal, type:\n\n```shell\n$ standards_validation_test --help\n```\nor\n\n```shell\n$ one_hop_test --help\n```\n\nshould give usage instructions as follows (where <tool name> is either 'standards_validation_test' or 'one_hop_test'):\n\n```shell\nusage: <tool name> [-h] [--components COMPONENTS] [--environment {dev,ci,test,prod}] --subject_id SUBJECT_ID --predicate_id PREDICATE_ID\n                                 --object_id OBJECT_ID [--trapi_version TRAPI_VERSION] [--biolink_version BIOLINK_VERSION]\n                                 [--log_level {ERROR,WARNING,INFO,DEBUG}]\n\nTranslator TRAPI and Biolink Model Validation of Knowledge Graphs\n\noptions:\n  -h, --help            show this help message and exit\n  --components COMPONENTS\n                        Names Translator components to be tested taken from the Translator Testing Model 'ComponentEnum' \n                        (may be a comma separated string of such names; default: run the test against the 'ars')\n  --environment {dev,ci,test,prod}\n                        Translator execution environment of the Translator Component targeted for testing.\n  --subject_id SUBJECT_ID\n                        Statement object concept CURIE\n  --predicate_id PREDICATE_ID\n                        Statement Biolink Predicate identifier\n  --object_id OBJECT_ID\n                        Statement object concept CURIE\n  --trapi_version TRAPI_VERSION\n                        TRAPI version expected for knowledge graph access (default: use current default release)\n  --biolink_version BIOLINK_VERSION\n                        Biolink Model version expected for knowledge graph access (default: use current default release)\n```\n\n### Programmatic Level Execution\n\n### Standards Validation Test\n\nTo run TRAPI and Biolink Model validation tests validating query outputs from a knowledge graph TRAPI component:\n\n```python\nfrom typing import Dict\nimport asyncio\nfrom translator_testing_model.datamodel.pydanticmodel import ComponentEnum\nfrom standards_validation_test import run_standards_validation_tests\n\ntest_data = {\n    # One test edge (asset)\n    \"subject_id\": \"DRUGBANK:DB01592\",\n    \"subject_category\": \"biolink:SmallMolecule\",\n    \"predicate_id\": \"biolink:has_side_effect\",\n    \"object_id\": \"MONDO:0011426\",\n    \"object_category\": \"biolink:Disease\",\n    \"components\": [\n            ComponentEnum(\"arax\"),\n            ComponentEnum(\"molepro\")\n    ]\n    # \"environment\": environment, # Optional[TestEnvEnum] = None; default: 'TestEnvEnum.ci' if not given\n    # \"trapi_version\": trapi_version,  # Optional[str] = None; latest community release if not given\n    # \"biolink_version\": biolink_version,  # Optional[str] = None; current Biolink Toolkit default if not given\n    # \"runner_settings\": asset.test_runner_settings,  # Optional[List[str]] = None\n}\nresults: Dict = asyncio.run(run_standards_validation_tests(**test_data))\nprint(results)\n```\n\n### OneHopTest\n\nTo run \"One Hop\" knowledge graph navigation tests validating query outputs from a knowledge graph TRAPI component:\n\n```python\nfrom typing import Dict\nimport asyncio\nfrom translator_testing_model.datamodel.pydanticmodel import ComponentEnum\nfrom one_hop_test import run_one_hop_tests\n\ntest_data = {\n    # One test edge (asset)\n    \"subject_id\": \"DRUGBANK:DB01592\",\n    \"subject_category\": \"biolink:SmallMolecule\",\n    \"predicate_id\": \"biolink:has_side_effect\",\n    \"object_id\": \"MONDO:0011426\",\n    \"object_category\": \"biolink:Disease\",\n    \"components\": [\n            ComponentEnum(\"arax\"),\n            ComponentEnum(\"molepro\")\n    ]\n    #\n    #     \"environment\": environment, # Optional[TestEnvEnum] = None; default: 'TestEnvEnum.ci' if not given\n    #     \"trapi_version\": trapi_version,  # Optional[str] = None; latest community release if not given\n    #     \"biolink_version\": biolink_version,  # Optional[str] = None; current Biolink Toolkit default if not given\n    #     \"runner_settings\": asset.test_runner_settings,  # Optional[List[str]] = None\n}\nresults: Dict = asyncio.run(run_one_hop_tests(**test_data))\nprint(results)\n```\n\nThe above wrapper method runs all related TestCases derived from the specified TestAsset (i.e. subject_id, etc.) without any special test parameters. If more fine-grained testing is desired, a subset of the underlying TRAPI queries can be run directly, something like this (here, we ignore the TestCases 'by_subject', 'inverse_by_new_subject' and 'by_object', and specify the 'strict_validation' parameter of True to Biolink Model validation, as understood by the **reasoner-validator** code running behind the scenes):\n\n```python\nfrom typing import Dict\nimport asyncio\nfrom standards_validation_test import StandardsValidationTest\nfrom translator_testing_model.datamodel.pydanticmodel import TestEnvEnum, ComponentEnum\nfrom graph_validation_test.utils.unit_test_templates import (\n    # by_subject,\n    # inverse_by_new_subject,\n    # by_object,\n    raise_subject_entity,\n    raise_object_entity,\n    raise_object_by_subject,\n    raise_predicate_by_subject\n)\n\ntest_data = {\n    # One test edge (asset)\n    \"subject_id\": \"DRUGBANK:DB01592\",\n    \"subject_category\": \"biolink:SmallMolecule\",\n    \"predicate_id\": \"biolink:has_side_effect\",\n    \"object_id\": \"MONDO:0011426\",\n    \"object_category\": \"biolink:Disease\",\n    \"components\": [\n            ComponentEnum(\"arax\"),\n            ComponentEnum(\"molepro\")\n    ],\n    \"environment\": TestEnvEnum.test,\n    \"trapi_version\": \"1.5.0-beta\",\n    \"biolink_version\": \"4.1.6\",\n    \"runner_settings\": \"Inferred\"\n}\ntrapi_generators = [\n    # by_subject,\n    # inverse_by_new_subject,\n    # by_object,\n    raise_subject_entity,\n    raise_object_entity,\n    raise_object_by_subject,\n    raise_predicate_by_subject\n]\n\n# A test runner specific parameter passed through\nkwargs = {\n    \"strict_validation\": True\n}\nresults: Dict = asyncio.run(StandardsValidationTest.run_tests(\n    **test_data, trapi_generators=trapi_generators, **kwargs)\n)\n```\n\nNote that the trapi_generation variables - defined in the **graph_validation_test.utils.unit_test_templates** module - are all simply Python functions returning TRAPI JSON messages to send to the target components. In principle, if one understands what those functions are doing, you could write your own methods to do other kinds of TRAPI queries whose output can then be validated against the specified TRAPI and Biolink Model releases.\n\n### Sample Output\n\nThis is a sample of what the JSON output from test runs currently looks like (this sample came from a OneHopTest run).\n\n```json\n{    \n    \"pks\": {\n        \"molepro\": \"molepro\"\n    },\n    \"results\": {\n        \"TestAsset_1-by_subject\": {\n            \"molepro\": {\n                \"status\": \"FAILED\",\n                \"messages\": {\n                    \"error\": {\n                        \"error.trapi.response.knowledge_graph.missing_expected_edge\": {\n                            \"global\": {\n                                \"TestAsset_1|(CHEBI:58579#biolink:SmallMolecule)-[biolink:is_active_metabolite_of]->(UniProtKB:Q9NQ88#biolink:Protein)\": null\n                            }\n                        }\n                    }\n                }\n            }\n        },\n        \"TestAsset_1-inverse_by_new_subject\": {\n            \"molepro\": {\n                \"status\": \"FAILED\",\n                \"messages\": {\n                    \"critical\": {\n                        \"critical.trapi.request.invalid\": {\n                            \"global\": {\n                                \"predicate 'biolink:is_active_metabolite_of'\": [\n                                    {\n                                        \"context\": \"inverse_by_new_subject\",\n                                        \"reason\": \"is an unknown or has no inverse?\"\n                                    }\n                                ]\n                            }\n                        }\n                    }\n                }\n            }\n        },\n        # etc...\n}\n```\n\n## Releases\n\nA [full change log](CHANGELOG.md) is provided documenting each release, but we summarize key release limitations here:\n\n### v0.0.\\* Releases\n\n- This initial code release only supports testing of [Translator SmartAPI Registry](https://smart-api.info/registry/translator) catalogued components which are TRAPI implementations for Translator Autonomous Relay Agent (ARA) and Knowledge Providers (KP), but _not_ direct testing of the Translator Autonomous Relay System (ARS) or Translator user interface (UI)\n- Standards validation tests currently calls release 4.0.0 of the [reasoner-validator](https://github.com/NCATSTranslator/reasoner-validator), which is currently limited to TRAPI release 1.4.2 validation (not yet the recent TRAPI 1.5.0 releases)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Validation of Translator Knowledge Graphs - TRAPI, Biolink Model and One Hop navigation",
    "version": "0.0.11",
    "project_urls": {
        "Bug Tracker": "https://github.com/TranslatorSRI/GraphValidationTests/issues",
        "Change Log": "https://github.com/TranslatorSRI/GraphValidationTests/blob/master/CHANGELOG.md",
        "Documentation": "https://github.com/TranslatorSRI/GraphValidationTests/blob/main/README.md",
        "Homepage": "https://github.com/TranslatorSRI",
        "Repository": "https://github.com/TranslatorSRI/GraphValidationTests"
    },
    "split_keywords": [
        "ncats",
        " biomedical data translator",
        " translator",
        " reasonerapi",
        " trapi",
        " validation",
        " biolink model"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f67a5d4bd0e7a2b8631767ace05e9e11f28390f6900ad7f675b3fac432fd420",
                "md5": "fe52afc21b64c4292e86724a7e1b1aee",
                "sha256": "a65157fce85ad745e27ad811f559909b4a65214b20b59d5769911a12af4ca468"
            },
            "downloads": -1,
            "filename": "graph_validation_tests-0.0.11-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fe52afc21b64c4292e86724a7e1b1aee",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.12,>=3.9",
            "size": 39953,
            "upload_time": "2024-05-02T05:11:59",
            "upload_time_iso_8601": "2024-05-02T05:11:59.430674Z",
            "url": "https://files.pythonhosted.org/packages/4f/67/a5d4bd0e7a2b8631767ace05e9e11f28390f6900ad7f675b3fac432fd420/graph_validation_tests-0.0.11-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8af8fa53bc673a890055d0bc2c26ec9783dc97075675a705735d6b76902ff305",
                "md5": "26d2464b9216ff7c98f802aebffdc819",
                "sha256": "8e7fab5f82f9c613f3c6f4ebc1f0bd480924f14f658f001f6185ceaa1c8759d5"
            },
            "downloads": -1,
            "filename": "graph_validation_tests-0.0.11.tar.gz",
            "has_sig": false,
            "md5_digest": "26d2464b9216ff7c98f802aebffdc819",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.12,>=3.9",
            "size": 491490,
            "upload_time": "2024-05-02T05:12:01",
            "upload_time_iso_8601": "2024-05-02T05:12:01.556602Z",
            "url": "https://files.pythonhosted.org/packages/8a/f8/fa53bc673a890055d0bc2c26ec9783dc97075675a705735d6b76902ff305/graph_validation_tests-0.0.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-02 05:12:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "TranslatorSRI",
    "github_project": "GraphValidationTests",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "graph-validation-tests"
}
        
Elapsed time: 3.92024s