cemento


Namecemento JSON
Version 0.8.9 PyPI version JSON
download
home_pageNone
SummaryA package to view and write ontologies directly from draw.io diagram files.
upload_time2025-07-25 16:55:12
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseBSD-3-Clause
keywords
VCS
bugtrack_url
requirements beautifulsoup4 defusedxml networkx pandas rdflib thefuzz tldextract build twine sphinx pydata-sphinx-theme sphinx-design sphinx-iframes sphinxcontrib-shtest myst-parser
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # SDLE FAIR Package: Centralized Entity Mapping & Extraction Nexus for Triples and Ontologies (CEMENTO)

**Description:**

This package is part of the larger SDLE FAIR application suite that features tools to create scientific ontologies faster and more efficiently. This package provides functional interfaces for converting draw.io diagrams of ontologies into RDF triples in the turtle (`.ttl`) format and vice versa. This package is able to provide term matching between reference ontology files and terms used in draw.io diagrams allowing for faster ontology deployment while maintaining robust cross-references.

## Features

To summarize, the package offers the following features:

1. Converting RDF triples in `.ttl` files into draw.io diagrams of the ontology terms and relationships and vice versa
2. Converting `.ttl` files and/or draw.io diagrams of ontologies into an intermediate `networkx` graph format and vice versa (given proper formatting of course)
3. Substituting and matching terms based on ontologies that YOU provide
4. Creating coherent tree-based layouts for terms for visualizing ontology class and instance relationships
5. Tree-splitting diagram layouts to suppport multiple inheritance between classes (though multiple inheritance is not recommended by BFO)
6. Support for URI prefixes (via binding) and literal annotations (language annotations like `@en` and datatype annotations like `^^xsd:string`)
7. Domain and range collection as a union for custom object properties.
8. Providing a log for substitutions made and suppresing substitutions by adding a key (\*).
9. Support for Property definitions. Properties that do not have definitions will default as an Object Property type.
10. Support for multiple pages in a draw.io file, for when you want to organize terms your way.

## Installation

To install this particular package, use pip to install the latest version of the package:

```{bash}
pip install cemento
```

## Usage

### Command Line Interface

Once the package is installed, you will have access to a `cemento` CLI command for converting files. This CLI interface allows you to convert `.ttl` files into draw.io diagrams and vice versa. To do so:

```{bash}
# converting from .ttl to drawio
cemento ttl_drawio your_triples.ttl your_output_diagram.drawio
# converting from .drawio to .ttl
cemento drawio_ttl your_output_diagram.drawio your_triples.ttl
```

It is that simple. By default, the program compiles with the versions of the reference ontologies it needs to do term matching. Specifically, it comes bundled with the following ontologies.

- [Common Core Ontologies](https://github.com/CommonCoreOntology/CommonCoreOntologies)
- [OWL Schema](https://www.w3.org/2002/07/owl#)
- [RDF Schema](https://www.w3.org/1999/02/22-rdf-syntax-ns#)
- [RDFS Schema](https://www.w3.org/2000/01/rdf-schema#)

These ontology files are used by `CEMENTO` for referencing terms and predicates. As you can imagine, the default reference ontology is CCO, which is the preferred mid-level ontology by the SDLE center. The next section details how you can add your own reference ontologies.

The schemas for RDF, XML, and RDFS contain the terms that all ontologies ought to understand by default. Thus, a lot of assumptions were made surrounding their standard use during the development of the package. You can, however, also specify a folder of choice through the `--defaults-folder-path` option for `cemento ttl_drawio`.

#### Adding Reference Ontologies

The `cemento ttl_drawio` command has an argument called `--onto-ref-folder-path` which you can point to a folder containing `.ttl` files that contain the terms you want to reference. For example, you can download the `cco.ttl` from the official [CCO repo page](https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/develop/src/cco-merged/CommonCoreOntologiesMerged.ttl) and place it here to reference all cco terms. Under the hood, this referencing is additive, which means you can add as many `.ttl` as you want to reference. By default, `cemento` will already come bundled with this folder, but it will currently only reference CCO.

**CAUTION:** Repeated references are overwritten in the order the files are read by python (usually alphabetical order). If your reference files conflict with one another, please be advised and resolve those conflicts first by deleting the terms or modifying them.

#### Adding Custom Prefixes

Adding custom prefixes are crucial when creating your own terms and namespaces. **IMPORTANT:** `CEMENTO` will not be able to process your custom term and prefix if it does not know the IRI to which it points. The `CEMENTO` package comes bundled with a default set of prefixes it uses to parse prefixes used in drawio ontology diagrams.

To add a custom prefix, create a file that models the contents of `examples/prefixes.json`, which is included for your reference. In addition, please set the `--prefix-file-path` option in `cemento drawio_ttl` to use a custom folder that contains your prefix-namespace pairs. The package will defer to the default `default_prefixes.json` (which is identical in content but not the same as the one in `examples/prefixes.json`) unless this path is specified.

## Scripting

The package is composed of four main modules that can be imported into a python script. The following sections can show how to use the package for the its most common (and simplest) use-cases:

### Converting draw.io to `.ttl` files

Using the actual function is as easy as importing and calling it in a python script. The function takes the exact same arguments that you can set in `cemento drawio_ttl`. In this case, the script needs to set those arguments explicitly.

```{python}
from cemento.rdf.drawio_to_turtle import convert_drawio_to_ttl

INPUT_PATH = "your_onto_diagram.drawio"
OUTPUT_PATH = "your_triples.ttl"
ONTO_PATH = "data" # this path points to the folder containing all the ttl files you want to reference (optional)
DEFAULTS_FOLDER = "" # path to the folder containing default terms. It should come with the cloned repo (optional)
PREFIXES_PATH = "prefixes.json" # this path points to a prefixes file with custom prefix assignments (optional)

if __name__ == "__main__":
    convert_drawio_to_ttl(
        INPUT_PATH, OUTPUT_PATH, ONTO_PATH, DEFAULTS_FOLDER, PREFIXES_PATH
    )
```

### Converting `.ttl` files to draw.io files

This case is very similiar to the previous one. The `.ttl` was assumed to contain the necessary information so you only need to set the `INPUT_PATH` and `OUTPUT_PATH`. The options `check_ttl_validity` and `set_unique_literals` set the default behavior of rule-checking the `ttl` file first, and treating literals with the same name as different things, respectively.

```{python}
from cemento.rdf.turtle_to_drawio import convert_ttl_to_drawio

INPUT_PATH = "your_triples.ttl"
OUTPUT_PATH = "your_onto_diagram.drawio"

if __name__ == "__main__":
    # the horizontal tree parameter controls whether you want the default vertical tree (False) or an inverted horizontal tree (True)
    convert_ttl_to_drawio(INPUT_PATH, OUTPUT_PATH, horizontal_tree=False, check_ttl_validity=True,
    set_unique_literals=True)
```

### Converting draw.io to a `networkx` DiGraph

We used a directed `networkx` graph (DiGraph) as an intermediary data structure that provides a much richer interface for graph manipulation than the default `rdflib` Graph. If you are interested in using this data structure, you are free to use the functions shown below:

```{python}
from cemento.draw_io.read_diagram import read_drawio
from cemento.draw_io.rdf.turtle_to_graph import convert_ttl_to_graph

DRAWIO_INPUT_PATH = "your_onto_diagram.drawio"
TTL_INPUT_PATH = "your_triples.ttl"
ONTO_FOLDER = "data"  # this path points to the folder containing all the ttl files you want to reference (optional)
DEFAULTS_FOLDER = "defaults"  # path to the folder containing default terms. It should come with the cloned repo (optional)
PREFIXES_PATH = (
    ""  # this path points to a prefixes file with custom prefix assignments (optional)
)
if __name__ == "__main__":
    # reads a draw.io diagram and converts it the graph
    graph = read_drawio(DRAWIO_INPUT_PATH, ONTO_FOLDER, PREFIXES_PATH, DEFAULTS_FOLDER)
    # use the graph here as proof
    print(graph.edges(data=True))

    #reads a ttl file and converts it to a graph
    convert_ttl_to_graph(TTL_INPUT_PATH)
```

In fact, the functions `read_drawio` and `convert_ttl_to_graph` are actually wrapped around to form the `convert_ttl_to_drawio` and `convert_drawio_to_ttl` functions. You are already using the former pair when using the latter.

### Important Note

When using the `read_drawio`, please exercise caution when providing the paths. The function has a signature:

```{python}
read_drawio( input_path: str | Path, onto_ref_folder: str | Path = None, prefixes_folder: str | Path = None, defaults_folder: str | Path = None, relabel_key: DiagramKey = DiagramKey.LABEL, inverted_rank_arrow: bool = False)
```

If you aren't planning on leveraging stratified layouts like the ones used in `draw_tree`, please supply just the arguments for `input_path` and optionally, `relabel_key` and `inverted_rank_arrow`.

### A Note on "Unique" Literals

By default, the package will treat all literals as being unique from one another. This is in contrast to terms which have singular, unique IRIs which are treated to be the same if drawn in multiple locations. To make unique literals (which don't come with IRIs), the package appends all literal terms with a unique ID that prevents merging. Thus, while working with DiGraphs, you will notice that the literals will come with a preprended ID.

You are free to remove them using `remove_literal_id` which is just one of the functions we wrote in `cemento.draw_io.preprocessing`. You are also free to implement your own algorithm as well.

## Drawing Basics

The following diagram goes through an example supplied with the repository called `happy-example.drawio` with its corresponding `.ttl` file called `happy-example.ttl`. We used [CCO terms](https://github.com/CommonCoreOntology/CommonCoreOntologies) to model the ontology, so please download that file and place it into your `ONTO_REF_FOLDER` so you can follow along.

![happy-exampl-explainer-diagram](figures/happy-example-explainer.drawio.svg)

**NOTE:** Click on the figure and click the `Raw` button on the subsequent page to enlarge. If you prefer, your can also refer to the `do-not-input-this-happy-example-explainer.drawio` file found in the `figures` folder.

## Future Features

This package was designed with end-to-end conversion in mind. The package is still in active development, and future features may include, but are not limited to the following:

- **An interactive mode.** Users will be able to visualize syntax errors, improper term connections (leveraging domains and ranges), and substitutions and make edits in iterations before finalizing a draw.io or `.ttl` output.
- **Comprehensive domain-range inference.** The package will not only be able to collect unions of terms, but infer them based on superclass term definitions.
- **Integrated reasoner.** Packages like `owlready2` have reasoners like `HermiT` and `Pellet` that will be integrated to diagram-to-triple conversion. This is for when some implicit connections that you would want to make are a little bit tedious to draw but are equally as important.

## License

This project was released under the BSD-3-Clause License. For more information about the license, please check the attached `LICENSE.md` file. For more about the Open Source movement, please check the [Open Source Initiative](https://opensource.org/licenses) website.

## Contact Information

If you have any questions or need further assistance, please open a GitHub issue and we can assist you there.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cemento",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Gabriel Obsequio Ponon <gop2@case.edu>",
    "download_url": "https://files.pythonhosted.org/packages/a0/77/7c4575e61e315f5f9c5c60179e158e91a292ee919c14d2a02bc67d46d16b/cemento-0.8.9.tar.gz",
    "platform": null,
    "description": "# SDLE FAIR Package: Centralized Entity Mapping & Extraction Nexus for Triples and Ontologies (CEMENTO)\n\n**Description:**\n\nThis package is part of the larger SDLE FAIR application suite that features tools to create scientific ontologies faster and more efficiently. This package provides functional interfaces for converting draw.io diagrams of ontologies into RDF triples in the turtle (`.ttl`) format and vice versa. This package is able to provide term matching between reference ontology files and terms used in draw.io diagrams allowing for faster ontology deployment while maintaining robust cross-references.\n\n## Features\n\nTo summarize, the package offers the following features:\n\n1. Converting RDF triples in `.ttl` files into draw.io diagrams of the ontology terms and relationships and vice versa\n2. Converting `.ttl` files and/or draw.io diagrams of ontologies into an intermediate `networkx` graph format and vice versa (given proper formatting of course)\n3. Substituting and matching terms based on ontologies that YOU provide\n4. Creating coherent tree-based layouts for terms for visualizing ontology class and instance relationships\n5. Tree-splitting diagram layouts to suppport multiple inheritance between classes (though multiple inheritance is not recommended by BFO)\n6. Support for URI prefixes (via binding) and literal annotations (language annotations like `@en` and datatype annotations like `^^xsd:string`)\n7. Domain and range collection as a union for custom object properties.\n8. Providing a log for substitutions made and suppresing substitutions by adding a key (\\*).\n9. Support for Property definitions. Properties that do not have definitions will default as an Object Property type.\n10. Support for multiple pages in a draw.io file, for when you want to organize terms your way.\n\n## Installation\n\nTo install this particular package, use pip to install the latest version of the package:\n\n```{bash}\npip install cemento\n```\n\n## Usage\n\n### Command Line Interface\n\nOnce the package is installed, you will have access to a `cemento` CLI command for converting files. This CLI interface allows you to convert `.ttl` files into draw.io diagrams and vice versa. To do so:\n\n```{bash}\n# converting from .ttl to drawio\ncemento ttl_drawio your_triples.ttl your_output_diagram.drawio\n# converting from .drawio to .ttl\ncemento drawio_ttl your_output_diagram.drawio your_triples.ttl\n```\n\nIt is that simple. By default, the program compiles with the versions of the reference ontologies it needs to do term matching. Specifically, it comes bundled with the following ontologies.\n\n- [Common Core Ontologies](https://github.com/CommonCoreOntology/CommonCoreOntologies)\n- [OWL Schema](https://www.w3.org/2002/07/owl#)\n- [RDF Schema](https://www.w3.org/1999/02/22-rdf-syntax-ns#)\n- [RDFS Schema](https://www.w3.org/2000/01/rdf-schema#)\n\nThese ontology files are used by `CEMENTO` for referencing terms and predicates. As you can imagine, the default reference ontology is CCO, which is the preferred mid-level ontology by the SDLE center. The next section details how you can add your own reference ontologies.\n\nThe schemas for RDF, XML, and RDFS contain the terms that all ontologies ought to understand by default. Thus, a lot of assumptions were made surrounding their standard use during the development of the package. You can, however, also specify a folder of choice through the `--defaults-folder-path` option for `cemento ttl_drawio`.\n\n#### Adding Reference Ontologies\n\nThe `cemento ttl_drawio` command has an argument called `--onto-ref-folder-path` which you can point to a folder containing `.ttl` files that contain the terms you want to reference. For example, you can download the `cco.ttl` from the official [CCO repo page](https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/develop/src/cco-merged/CommonCoreOntologiesMerged.ttl) and place it here to reference all cco terms. Under the hood, this referencing is additive, which means you can add as many `.ttl` as you want to reference. By default, `cemento` will already come bundled with this folder, but it will currently only reference CCO.\n\n**CAUTION:** Repeated references are overwritten in the order the files are read by python (usually alphabetical order). If your reference files conflict with one another, please be advised and resolve those conflicts first by deleting the terms or modifying them.\n\n#### Adding Custom Prefixes\n\nAdding custom prefixes are crucial when creating your own terms and namespaces. **IMPORTANT:** `CEMENTO` will not be able to process your custom term and prefix if it does not know the IRI to which it points. The `CEMENTO` package comes bundled with a default set of prefixes it uses to parse prefixes used in drawio ontology diagrams.\n\nTo add a custom prefix, create a file that models the contents of `examples/prefixes.json`, which is included for your reference. In addition, please set the `--prefix-file-path` option in `cemento drawio_ttl` to use a custom folder that contains your prefix-namespace pairs. The package will defer to the default `default_prefixes.json` (which is identical in content but not the same as the one in `examples/prefixes.json`) unless this path is specified.\n\n## Scripting\n\nThe package is composed of four main modules that can be imported into a python script. The following sections can show how to use the package for the its most common (and simplest) use-cases:\n\n### Converting draw.io to `.ttl` files\n\nUsing the actual function is as easy as importing and calling it in a python script. The function takes the exact same arguments that you can set in `cemento drawio_ttl`. In this case, the script needs to set those arguments explicitly.\n\n```{python}\nfrom cemento.rdf.drawio_to_turtle import convert_drawio_to_ttl\n\nINPUT_PATH = \"your_onto_diagram.drawio\"\nOUTPUT_PATH = \"your_triples.ttl\"\nONTO_PATH = \"data\" # this path points to the folder containing all the ttl files you want to reference (optional)\nDEFAULTS_FOLDER = \"\" # path to the folder containing default terms. It should come with the cloned repo (optional)\nPREFIXES_PATH = \"prefixes.json\" # this path points to a prefixes file with custom prefix assignments (optional)\n\nif __name__ == \"__main__\":\n    convert_drawio_to_ttl(\n        INPUT_PATH, OUTPUT_PATH, ONTO_PATH, DEFAULTS_FOLDER, PREFIXES_PATH\n    )\n```\n\n### Converting `.ttl` files to draw.io files\n\nThis case is very similiar to the previous one. The `.ttl` was assumed to contain the necessary information so you only need to set the `INPUT_PATH` and `OUTPUT_PATH`. The options `check_ttl_validity` and `set_unique_literals` set the default behavior of rule-checking the `ttl` file first, and treating literals with the same name as different things, respectively.\n\n```{python}\nfrom cemento.rdf.turtle_to_drawio import convert_ttl_to_drawio\n\nINPUT_PATH = \"your_triples.ttl\"\nOUTPUT_PATH = \"your_onto_diagram.drawio\"\n\nif __name__ == \"__main__\":\n    # the horizontal tree parameter controls whether you want the default vertical tree (False) or an inverted horizontal tree (True)\n    convert_ttl_to_drawio(INPUT_PATH, OUTPUT_PATH, horizontal_tree=False, check_ttl_validity=True,\n    set_unique_literals=True)\n```\n\n### Converting draw.io to a `networkx` DiGraph\n\nWe used a directed `networkx` graph (DiGraph) as an intermediary data structure that provides a much richer interface for graph manipulation than the default `rdflib` Graph. If you are interested in using this data structure, you are free to use the functions shown below:\n\n```{python}\nfrom cemento.draw_io.read_diagram import read_drawio\nfrom cemento.draw_io.rdf.turtle_to_graph import convert_ttl_to_graph\n\nDRAWIO_INPUT_PATH = \"your_onto_diagram.drawio\"\nTTL_INPUT_PATH = \"your_triples.ttl\"\nONTO_FOLDER = \"data\"  # this path points to the folder containing all the ttl files you want to reference (optional)\nDEFAULTS_FOLDER = \"defaults\"  # path to the folder containing default terms. It should come with the cloned repo (optional)\nPREFIXES_PATH = (\n    \"\"  # this path points to a prefixes file with custom prefix assignments (optional)\n)\nif __name__ == \"__main__\":\n    # reads a draw.io diagram and converts it the graph\n    graph = read_drawio(DRAWIO_INPUT_PATH, ONTO_FOLDER, PREFIXES_PATH, DEFAULTS_FOLDER)\n    # use the graph here as proof\n    print(graph.edges(data=True))\n\n    #reads a ttl file and converts it to a graph\n    convert_ttl_to_graph(TTL_INPUT_PATH)\n```\n\nIn fact, the functions `read_drawio` and `convert_ttl_to_graph` are actually wrapped around to form the `convert_ttl_to_drawio` and `convert_drawio_to_ttl` functions. You are already using the former pair when using the latter.\n\n### Important Note\n\nWhen using the `read_drawio`, please exercise caution when providing the paths. The function has a signature:\n\n```{python}\nread_drawio( input_path: str | Path, onto_ref_folder: str | Path = None, prefixes_folder: str | Path = None, defaults_folder: str | Path = None, relabel_key: DiagramKey = DiagramKey.LABEL, inverted_rank_arrow: bool = False)\n```\n\nIf you aren't planning on leveraging stratified layouts like the ones used in `draw_tree`, please supply just the arguments for `input_path` and optionally, `relabel_key` and `inverted_rank_arrow`.\n\n### A Note on \"Unique\" Literals\n\nBy default, the package will treat all literals as being unique from one another. This is in contrast to terms which have singular, unique IRIs which are treated to be the same if drawn in multiple locations. To make unique literals (which don't come with IRIs), the package appends all literal terms with a unique ID that prevents merging. Thus, while working with DiGraphs, you will notice that the literals will come with a preprended ID.\n\nYou are free to remove them using `remove_literal_id` which is just one of the functions we wrote in `cemento.draw_io.preprocessing`. You are also free to implement your own algorithm as well.\n\n## Drawing Basics\n\nThe following diagram goes through an example supplied with the repository called `happy-example.drawio` with its corresponding `.ttl` file called `happy-example.ttl`. We used [CCO terms](https://github.com/CommonCoreOntology/CommonCoreOntologies) to model the ontology, so please download that file and place it into your `ONTO_REF_FOLDER` so you can follow along.\n\n![happy-exampl-explainer-diagram](figures/happy-example-explainer.drawio.svg)\n\n**NOTE:** Click on the figure and click the `Raw` button on the subsequent page to enlarge. If you prefer, your can also refer to the `do-not-input-this-happy-example-explainer.drawio` file found in the `figures` folder.\n\n## Future Features\n\nThis package was designed with end-to-end conversion in mind. The package is still in active development, and future features may include, but are not limited to the following:\n\n- **An interactive mode.** Users will be able to visualize syntax errors, improper term connections (leveraging domains and ranges), and substitutions and make edits in iterations before finalizing a draw.io or `.ttl` output.\n- **Comprehensive domain-range inference.** The package will not only be able to collect unions of terms, but infer them based on superclass term definitions.\n- **Integrated reasoner.** Packages like `owlready2` have reasoners like `HermiT` and `Pellet` that will be integrated to diagram-to-triple conversion. This is for when some implicit connections that you would want to make are a little bit tedious to draw but are equally as important.\n\n## License\n\nThis project was released under the BSD-3-Clause License. For more information about the license, please check the attached `LICENSE.md` file. For more about the Open Source movement, please check the [Open Source Initiative](https://opensource.org/licenses) website.\n\n## Contact Information\n\nIf you have any questions or need further assistance, please open a GitHub issue and we can assist you there.\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "A package to view and write ontologies directly from draw.io diagram files.",
    "version": "0.8.9",
    "project_urls": {
        "Homepage": "https://github.com/Gabbyton/CEMENTO"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19b7acbad6cfb2f1dfee130023858d50ad961177f2feb2b54fbe2a064b2d15db",
                "md5": "fb159e57a48d2414def82a34c95645b9",
                "sha256": "c23d07e5207e1eeccd0e360372ed99412df900074c4d9422ef8a045b0a01b329"
            },
            "downloads": -1,
            "filename": "cemento-0.8.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fb159e57a48d2414def82a34c95645b9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 226967,
            "upload_time": "2025-07-25T16:55:11",
            "upload_time_iso_8601": "2025-07-25T16:55:11.622854Z",
            "url": "https://files.pythonhosted.org/packages/19/b7/acbad6cfb2f1dfee130023858d50ad961177f2feb2b54fbe2a064b2d15db/cemento-0.8.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0777c4575e61e315f5f9c5c60179e158e91a292ee919c14d2a02bc67d46d16b",
                "md5": "8cfd9d438eb8dd5dd041ac36488065e8",
                "sha256": "e843e134df1bb46969e22c97560054e3256e580ea6ac2257c1e58f218244eceb"
            },
            "downloads": -1,
            "filename": "cemento-0.8.9.tar.gz",
            "has_sig": false,
            "md5_digest": "8cfd9d438eb8dd5dd041ac36488065e8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 1217783,
            "upload_time": "2025-07-25T16:55:12",
            "upload_time_iso_8601": "2025-07-25T16:55:12.721876Z",
            "url": "https://files.pythonhosted.org/packages/a0/77/7c4575e61e315f5f9c5c60179e158e91a292ee919c14d2a02bc67d46d16b/cemento-0.8.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-25 16:55:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Gabbyton",
    "github_project": "CEMENTO",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "beautifulsoup4",
            "specs": []
        },
        {
            "name": "defusedxml",
            "specs": []
        },
        {
            "name": "networkx",
            "specs": []
        },
        {
            "name": "pandas",
            "specs": []
        },
        {
            "name": "rdflib",
            "specs": []
        },
        {
            "name": "thefuzz",
            "specs": []
        },
        {
            "name": "tldextract",
            "specs": []
        },
        {
            "name": "build",
            "specs": []
        },
        {
            "name": "twine",
            "specs": []
        },
        {
            "name": "sphinx",
            "specs": []
        },
        {
            "name": "pydata-sphinx-theme",
            "specs": []
        },
        {
            "name": "sphinx-design",
            "specs": []
        },
        {
            "name": "sphinx-iframes",
            "specs": []
        },
        {
            "name": "sphinxcontrib-shtest",
            "specs": []
        },
        {
            "name": "myst-parser",
            "specs": []
        }
    ],
    "lcname": "cemento"
}
        
Elapsed time: 0.72729s