DeTrusty


NameDeTrusty JSON
Version 0.21.1 PyPI version JSON
download
home_pagehttps://github.com/SDM-TIB/DeTrusty
SummaryDeTrusty - Decentralized and Trustable Query Engine
upload_time2025-08-04 12:29:49
maintainerNone
docs_urlNone
authorPhilipp D. Rohde
requires_python>=3.8
licenseGNU/GPLv3
keywords
VCS
bugtrack_url
requirements requests Flask ply rdflib python-dateutil pyoxigraph
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Test Status](https://github.com/SDM-TIB/DeTrusty/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/SDM-TIB/DeTrusty/actions/workflows/test.yml)
[![Latest Release](http://img.shields.io/github/release/SDM-TIB/DeTrusty.svg?logo=github)](https://github.com/SDM-TIB/DeTrusty/releases)
[![Docker Image](https://img.shields.io/badge/Docker%20Image-sdmtib/detrusty-blue?logo=Docker)](https://hub.docker.com/r/sdmtib/detrusty)
[![DOI](https://zenodo.org/badge/294416497.svg)](https://zenodo.org/badge/latestdoi/294416497)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE)

[![Python Versions](https://img.shields.io/pypi/pyversions/DeTrusty)](https://pypi.org/project/DeTrusty)
[![Package Format](https://img.shields.io/pypi/format/DeTrusty)](https://pypi.org/project/DeTrusty)
[![Package Status](https://img.shields.io/pypi/status/DeTrusty)](https://pypi.org/project/DeTrusty)
[![Package Version](https://img.shields.io/pypi/v/DeTrusty)](https://pypi.org/project/DeTrusty)

# ![Logo](https://raw.githubusercontent.com/SDM-TIB/DeTrusty/master/images/logo.png "Logo")

DeTrusty is a federated query engine.
At this stage, only SPARQL endpoints are supported.
DeTrusty differs from other query engines through its focus on the explainability and trustworthiness of the query result.

> [!NOTE]
> DeTrusty is under **active development!**
> The current version is a federated query engine following the SPARQL 1.1 protocol, i.e., you can use the SERVICE clause to specify the endpoints manually.
> However, some features of SPARQL 1.1 and the parts about the explainability and trustworthiness have not been implemented yet.

Currently, DeTrusty only supports ``SELECT`` queries.
The following SPARQL 1.1 operations are not supported (yet).
This list might not be exhaustive. Please, let us know if we missed something.
- Conditional functions, e.g., `IF`, `BOUND`, `COALESCE`
- Built-in functions, e.g., `isIRI`, `STRLEN`, `abs`, `floor`, `now`, `month`, `MD5`
- Specifying RDF datasets using `FROM`, `FROM NAMED`, or `GRAPH`

If you want to know more, check out the [documentation](https://sdm-tib.github.io/DeTrusty/).

## Running DeTrusty
You can use DeTrusty as a Python3 library or a Web-based service using Docker.
The documentation includes detailed examples and explanations for both scenarios.

* [DeTrusty as a Library](https://sdm-tib.github.io/DeTrusty/library.html)
* [DeTrusty as a Service](https://sdm-tib.github.io/DeTrusty/service.html)

## License
DeTrusty is licensed under GPL-3.0.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/SDM-TIB/DeTrusty",
    "name": "DeTrusty",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Philipp D. Rohde",
    "author_email": "philipp.rohde@tib.eu",
    "download_url": "https://files.pythonhosted.org/packages/bb/a8/567365cedc13775254df826acd5a43e2b65ca10e07297b51314daf5f2a22/detrusty-0.21.1.tar.gz",
    "platform": null,
    "description": "[![Test Status](https://github.com/SDM-TIB/DeTrusty/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/SDM-TIB/DeTrusty/actions/workflows/test.yml)\n[![Latest Release](http://img.shields.io/github/release/SDM-TIB/DeTrusty.svg?logo=github)](https://github.com/SDM-TIB/DeTrusty/releases)\n[![Docker Image](https://img.shields.io/badge/Docker%20Image-sdmtib/detrusty-blue?logo=Docker)](https://hub.docker.com/r/sdmtib/detrusty)\n[![DOI](https://zenodo.org/badge/294416497.svg)](https://zenodo.org/badge/latestdoi/294416497)\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE)\n\n[![Python Versions](https://img.shields.io/pypi/pyversions/DeTrusty)](https://pypi.org/project/DeTrusty)\n[![Package Format](https://img.shields.io/pypi/format/DeTrusty)](https://pypi.org/project/DeTrusty)\n[![Package Status](https://img.shields.io/pypi/status/DeTrusty)](https://pypi.org/project/DeTrusty)\n[![Package Version](https://img.shields.io/pypi/v/DeTrusty)](https://pypi.org/project/DeTrusty)\n\n# ![Logo](https://raw.githubusercontent.com/SDM-TIB/DeTrusty/master/images/logo.png \"Logo\")\n\nDeTrusty is a federated query engine.\nAt this stage, only SPARQL endpoints are supported.\nDeTrusty differs from other query engines through its focus on the explainability and trustworthiness of the query result.\n\n> [!NOTE]\n> DeTrusty is under **active development!**\n> The current version is a federated query engine following the SPARQL 1.1 protocol, i.e., you can use the SERVICE clause to specify the endpoints manually.\n> However, some features of SPARQL 1.1 and the parts about the explainability and trustworthiness have not been implemented yet.\n\nCurrently, DeTrusty only supports ``SELECT`` queries.\nThe following SPARQL 1.1 operations are not supported (yet).\nThis list might not be exhaustive. Please, let us know if we missed something.\n- Conditional functions, e.g., `IF`, `BOUND`, `COALESCE`\n- Built-in functions, e.g., `isIRI`, `STRLEN`, `abs`, `floor`, `now`, `month`, `MD5`\n- Specifying RDF datasets using `FROM`, `FROM NAMED`, or `GRAPH`\n\nIf you want to know more, check out the [documentation](https://sdm-tib.github.io/DeTrusty/).\n\n## Running DeTrusty\nYou can use DeTrusty as a Python3 library or a Web-based service using Docker.\nThe documentation includes detailed examples and explanations for both scenarios.\n\n* [DeTrusty as a Library](https://sdm-tib.github.io/DeTrusty/library.html)\n* [DeTrusty as a Service](https://sdm-tib.github.io/DeTrusty/service.html)\n\n## License\nDeTrusty is licensed under GPL-3.0.\n",
    "bugtrack_url": null,
    "license": "GNU/GPLv3",
    "summary": "DeTrusty - Decentralized and Trustable Query Engine",
    "version": "0.21.1",
    "project_urls": {
        "Changes": "https://sdm-tib.github.io/DeTrusty/changelog.html",
        "Documentation": "https://sdm-tib.github.io/DeTrusty/",
        "Download": "https://github.com/SDM-TIB/DeTrusty/archive/refs/tags/v0.21.1.tar.gz",
        "Homepage": "https://github.com/SDM-TIB/DeTrusty",
        "Issue Tracker": "https://github.com/SDM-TIB/DeTrusty/issues",
        "Source Code": "https://github.com/SDM-TIB/DeTrusty"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9dc17e7e6c3d226547a2ee7f8ea5c205344ef96652b370c1b59662663d4b1e25",
                "md5": "ac9a7b4e5813a2269b602bc64ec4dac4",
                "sha256": "05ba3e18da5fd62371e87bf543b77ace6ee97f03cbd1cec275e508ad55f0bb81"
            },
            "downloads": -1,
            "filename": "detrusty-0.21.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ac9a7b4e5813a2269b602bc64ec4dac4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 115928,
            "upload_time": "2025-08-04T12:29:47",
            "upload_time_iso_8601": "2025-08-04T12:29:47.964122Z",
            "url": "https://files.pythonhosted.org/packages/9d/c1/7e7e6c3d226547a2ee7f8ea5c205344ef96652b370c1b59662663d4b1e25/detrusty-0.21.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bba8567365cedc13775254df826acd5a43e2b65ca10e07297b51314daf5f2a22",
                "md5": "8335c6b58912e86216ee3986b7d6d1d8",
                "sha256": "fd27ee65daf6b761eb47b92d9d9c9ce717c97c6923befba227f2651068b82fe6"
            },
            "downloads": -1,
            "filename": "detrusty-0.21.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8335c6b58912e86216ee3986b7d6d1d8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 89200,
            "upload_time": "2025-08-04T12:29:49",
            "upload_time_iso_8601": "2025-08-04T12:29:49.254992Z",
            "url": "https://files.pythonhosted.org/packages/bb/a8/567365cedc13775254df826acd5a43e2b65ca10e07297b51314daf5f2a22/detrusty-0.21.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-04 12:29:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SDM-TIB",
    "github_project": "DeTrusty",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "requests",
            "specs": [
                [
                    "==",
                    "2.32.4"
                ]
            ]
        },
        {
            "name": "Flask",
            "specs": [
                [
                    "==",
                    "3.1.1"
                ]
            ]
        },
        {
            "name": "ply",
            "specs": [
                [
                    "==",
                    "3.11"
                ]
            ]
        },
        {
            "name": "rdflib",
            "specs": [
                [
                    "==",
                    "6.3.2"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    "==",
                    "2.9.0.post0"
                ]
            ]
        },
        {
            "name": "pyoxigraph",
            "specs": [
                [
                    "==",
                    "0.4.11"
                ]
            ]
        }
    ],
    "lcname": "detrusty"
}
        
Elapsed time: 0.40952s