Wimmics / corese

Software platform implementing and extending the standards of the Semantic Web.
https://project.inria.fr/corese/
Other
92 stars 29 forks source link
inria java rdf rdfs semantic-web shacl sparql sparql-client sparql-endpoints

Project Status: Active – The project has reached a stable, usable state and is being actively developed. DOI SWH License: CECILL-C Discussions

Corese-logo
Software platform for the Semantic Web of Linked Data

Corese is a software platform implementing and extending the standards of the Semantic Web. It allows to create, manipulate, parse, serialize, query, reason and validate RDF data.

Corese implement W3C standards RDF, RDFS, SPARQL1.1 Query & Update, OWL RL, SHACL … It also implements extensions like STTL SPARQL, SPARQL Rule and LDScript.

There are several interfaces for Corese:

Download and install

Corese-library

<dependency>
    <groupId>fr.inria.corese</groupId>
    <artifactId>corese-core</artifactId>
    <version>4.5.0</version>
</dependency>

<!-- jena storage -->
<dependency>
    <groupId>fr.inria.corese</groupId>
    <artifactId>corese-jena</artifactId>
    <version>4.5.0</version>
</dependency>

<!-- rdf4j storage -->
<dependency>
    <groupId>fr.inria.corese</groupId>
    <artifactId>corese-rdf4j</artifactId>
    <version>4.5.0</version>
</dependency>

Corese-server

docker run --name my-corese \
    -p 8080:8080 \
    -d wimmics/corese
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-server-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-server-4.5.0.jar"

Corese-GUI

wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-gui-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-gui-4.5.0.jar"

Corese-Command

wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-command-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-command-4.5.0.jar"
curl -sSL https://files.inria.fr/corese/distrib/script/install-corese-command.sh | bash

To uninstall:

curl -sSL https://files.inria.fr/corese/distrib/script/uninstall-corese-command.sh | bash

If you're using zsh, replace bash with zsh.

Corese-Python (beta)

wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-library-python-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-library-python-4.5.0.jar"

Compilation from source

Download source code and compile.

git clone "https://github.com/Wimmics/corese.git"
cd corese
mvn clean install -DskipTests

How to cite Corese

Use the "Cite this repository" option on the right side of this page.

Contributions and discussions

For support questions, comments, and any ideas for improvements you'd like to discuss, please use our discussion forum. We welcome everyone to contribute to issue reports, suggest new features, and create pull requests.

General informations