Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Version 0.2.0

- wrapped corese-core version 4.6.1
- fixed broken code in CoreseAPI and Java bridge classes
- refactored CoreseAPI for usage simplification
- updated example notebook

## Version 0.1.5

- added corese-python/pycorese API documentation
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

*/

val coreseVersion = "4.6.0"
val coreseVersion = "4.6.1"
val corese_core= "corese-core-$coreseVersion-jar-with-dependencies.jar"
val source="https://repo.maven.apache.org/maven2/fr/inria/corese/corese-core/$coreseVersion"
val dest="./build/libs"
Expand Down
13 changes: 3 additions & 10 deletions docs/source/python_api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Python API Reference
===================================

**pycorese** is a Python wrapper for accessing and manipulating RDF data with Corese features connected by one of the java bridge packages: ``py4j`` or ``jpype``.
**pycorese** is a Python wrapper for accessing and manipulating RDF data with Corese features connected by one of the Java bridge packages: ``py4j`` or ``jpype``.

.. note::

Expand All @@ -21,6 +21,8 @@ HIgh-level API is a set of convenience methods to facilitate the common tasks of
.. automodule:: pycorese.api
:members: CoreseAPI
:undoc-members:
:member-order: bysource



.. contents::
Expand Down Expand Up @@ -70,15 +72,6 @@ For the details of these classes and their methods, please refer to the `Corese

Corese ``fr.inria.corese.core.shacl.Shacl`` object.

.. autoattribute:: pycorese.api.CoreseAPI.DataManager
:annotation:

Corese ``fr.inria.corese.core.storage.api.dataManager.DataManager`` object.

.. autoattribute:: pycorese.api.CoreseAPI.CoreseGraphDataManager
:annotation:

Corese ``fr.inria.corese.core.storage.CoreseGraphDataManager`` object.

.. toctree::
:maxdepth: 2
Expand Down
Loading