A SPARQL endpoint to serve machine learning models, or any other logic implemented in Python, using RDFLib and FastAPI.
Project description
✨ SPARQL endpoint for RDFLib custom functions
rdflib-endpoint
is a SPARQL endpoint based on a RDFLib Graph to easily serve machine learning models, or any other logic implemented in Python via custom SPARQL functions.
It aims to enable python developers to easily deploy functions that can be queried in a federated fashion using SPARQL. For example: using a python function to resolve labels for specific identifiers, or run a classifier given entities retrieved in a query to another SPARQL endpoint.
The user defines and registers custom SPARQL functions using Python, and/or populate the RDFLib Graph, then the endpoint is deployed based on the FastAPI framework.
The deployed SPARQL endpoint can be used as a SERVICE
in a federated SPARQL query from regular triplestores SPARQL endpoints. Tested on OpenLink Virtuoso (Jena based) and Ontotext GraphDB (rdf4j based). The endpoint is CORS enabled.
Built with RDFLib and FastAPI. Tested for Python 3.7, 3.8 and 3.9
Please create an issue, or send a pull request if you are facing issues or would like to see a feature implemented
📥 Install the package
Install Pipu Simply install directly from GitHub:
pip install rdflib-endpoint
🐍 Define custom SPARQL functions
Checkout the example
folder for a complete working app example to get started, with a docker deployment. The best way to create a new SPARQL endpoint is to copy this example
folder and start from it.
Create a app/main.py
file in your project folder with your functions and endpoint parameters:
from rdflib_endpoint import SparqlEndpoint
import rdflib
from rdflib.plugins.sparql.evalutils import _eval
def custom_concat(query_results, ctx, part, eval_part):
"""Concat 2 strings in the 2 senses and return the length as additional Length variable
"""
argument1 = str(_eval(part.expr.expr[0], eval_part.forget(ctx, _except=part.expr._vars)))
argument2 = str(_eval(part.expr.expr[1], eval_part.forget(ctx, _except=part.expr._vars)))
evaluation = []
scores = []
concat_string = argument1 + argument2
reverse_string = argument2 + argument1
evaluation.append(concat_string)
evaluation.append(reverse_string)
scores.append(len(concat_string))
scores.append(len(reverse_string))
# Append the results for our custom function
for i, result in enumerate(evaluation):
query_results.append(eval_part.merge({
part.var: rdflib.Literal(result),
rdflib.term.Variable(part.var + 'Length'): rdflib.Literal(scores[i])
}))
return query_results, ctx, part, eval_part
# Start the SPARQL endpoint based on a RDFLib Graph and register your custom functions
g = rdflib.graph.ConjunctiveGraph()
app = SparqlEndpoint(
graph=g,
# Register the functions:
functions={
'https://w3id.org/um/sparql-functions/custom_concat': custom_concat
},
# CORS enabled by default
cors_enabled=True,
# Metadata used for the service description and Swagger UI:
title="SPARQL endpoint for RDFLib graph",
description="A SPARQL endpoint to serve machine learning models, or any other logic implemented in Python. \n[Source code](https://github.com/vemonet/rdflib-endpoint)",
version="0.1.0",
public_url='https://your-endpoint-url/sparql',
# Example queries displayed in the Swagger UI to help users
example_query="""Example query:\n
```
PREFIX myfunctions: <https://w3id.org/um/sparql-functions/>
SELECT ?concat ?concatLength WHERE {
BIND("First" AS ?first)
BIND(myfunctions:custom_concat(?first, "last") AS ?concat)
}
```"""
)
🦄 Run the SPARQL endpoint
To quickly get started you can run the FastAPI server from the example
folder with uvicorn
on http://localhost:8000
cd example
uvicorn main:app --reload --app-dir app
🧑💻 Development
📥 Install for development
Simply install directly from GitHub:
pip install rdflib-endpoint@git+https://github.com/vemonet/rdflib-endpoint@main
Or clone and install locally for development:
git clone https://github.com/vemonet/rdflib-endpoint
cd rdflib-endpoint
pip install -e .
You can use a virtual environment to avoid version conflicts:
# Create the virtual environment folder in your workspace
python3 -m venv .venv
# Activate it using a script in the created folder
source .venv/bin/activate
✅️ Run the tests
Install additional dependencies:
pip install pytest requests
Run the tests locally (from the root folder):
pytest -s
📂 Projects using rdflib-endpoint
Here are some projects using rdflib-endpoint
to deploy custom SPARQL endpoints with python:
- https://github.com/MaastrichtU-IDS/openpredict-sparql-service
- Serve predicted biomedical entities associations (e.g. disease treated by drug) using the OpenPredict classifier
- https://github.com/vemonet/translator-sparql-service
- A SPARQL endpoint to serve NCATS Translator services as SPARQL custom functions.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rdflib-endpoint-0.1.0.tar.gz
.
File metadata
- Download URL: rdflib-endpoint-0.1.0.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30b36c7a8415e75111161df03f289ab816836d2a803a2dcfb198976bfd249b66 |
|
MD5 | 810bf7e0fbaa7374f7cc57744a40d546 |
|
BLAKE2b-256 | 17a75df7dcf6eda1437ac1d957ea46ed49377454d7def73ad342606a87c1cc16 |
File details
Details for the file rdflib_endpoint-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: rdflib_endpoint-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bed4ee3dfa445e4ff575c30ea8d4c713a9afdef97b4e028820848b7ca0aab67 |
|
MD5 | a6beb0f74a85cd75ae6e0ae3021e51de |
|
BLAKE2b-256 | 480206f85c32890608a01244f0bedf2e7f78522a3c72ce07c29d5b3708eeef7e |