Ricgraph

Latest version: v2.9

Safety actively analyzes 714792 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 5

2.3

The following improvements have been made to Ricgraph.

Structural changes:
- Ricgraph now has a REST API. You can use the Ricgraph REST API to get data from Ricgraph, or to execute predefined queries in Ricgraph and Ricgraph Explorer. The advantage of a REST API is that your code is not dependent on any Ricgraph code. Ricgraph Explorer has a button that shows the documentation and allow you to try out REST API calls. [Read more about this REST API](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_restapi.md).
- Ricgraph now uses a different type of index if you use Neo4j as graph database backend. This results in a much faster harvesting process and much faster queries.
- Ricgraph has a main Ricgraph website on www.ricgraph.eu. Alternative sites are www.ricgraph.nl and www.ricgraph.com. The code and the final published website are in a separate GitHub repository [Website for Ricgraph - Research in context graph](https://github.com/UtrechtUniversity/ricgraph-website).
- Ricgraph uses a new WSGI/ASGI webserver gunicorn. This is required for the REST API.

Ricgraph Explorer:
- Some pages now show histograms, e.g. of the types of research results to which a person has contributed, or the skills in a (sub-)organization.
- It is possible to adjust the maximum number of results from a query, and the maximum number of rows in a table.

Ricgraph:
- Changes to use the Neo4j elementId() function call instead of deprecated id() in neo4j. However, for memgraph, elementId() does not exist and id() should be used.

Harvest scripts:
- The harvest scripts for Pure and OpenAlex now harvest (as default) the years 2021 - 2024, this used to be 2020 - 2023.
- OpenAlex has defined new research result types. These have been added to the harvest script for OpenAlex.

Documentation:
- Documentation for the REST API, including installation instructions.
- Various clarifications.

Upgrading:
- If you upgrade from any Ricgraph version, you will need to [re-install Ricgraph](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_install_configure.md), re-use your previous Ricgraph initialization file, and reharvest your sources. This is due to the many changes. It is advisable to remove all of your existing files and directories, except for ricgraph.ini, before you re-install Ricgraph.
- If you don't use at least Python 3.9, you will need to upgrade to at least this Python version.

2.2

This release is the same as [Ricgraph v2.1](https://github.com/UtrechtUniversity/ricgraph/releases/tag/v2.1), except for these minor changes:
- Some mentions have been added.
- CITATION.cff is now correctly formatted (as was not the case in v2.1, which confused some metadata harvesters).

Please read the [Release notes of Ricgraph v2.1](https://github.com/UtrechtUniversity/ricgraph/releases/tag/v2.1) to read what you have to do when upgrading Ricgraph.

2.1

A journal article has been published about Ricgraph. Please read it to get a gentle introduction in Ricgraph. Rik D.T. Janssen (2024). Ricgraph: A flexible and extensible graph to explore research in context from various systems. *SoftwareX*, 26(101736). https://doi.org/10.1016/j.softx.2024.101736.

The following improvements have been made to Ricgraph.

Structural change:
- As an alternative to Neo4j, you can also use [Memgraph](https://memgraph.com/). Memgraph is an in memory graph database. You can use Memgraph by modifying some settings in the [Ricgraph initialization file](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_install_configure.md#ricgraph-initialization-file). Memgraph with Ricgraph has not been tested extensively, but first tests seem to indicate that Memgraph is much faster than Neo4j, especially for harvesting.

Ricgraph Explorer:
- Improved the speed of finding persons that share research result types with a certain person.

Ricgraph:
- Added a function to get datestamps and timestamps to monitor clock time progress.
- Added counters for the number of accesses to the graph database backend.

Harvest scripts:
- Every harvest script now prints datestamps and timestamps to monitor clock time progress. They also have counters for the number of accesses to the graph database backend. Both can be used to get an idea about the performance of the graph database backend.

Documentation:
- Added documentation how to use Memgraph.

Upgrading:
- If you upgrade from Ricgraph v2.0, you do not need to re-install or reharvest.
- If you upgrade from any Ricgraph version earlier than v2.0, you will need to [re-install Ricgraph](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_install_configure.md), re-create your [Ricgraph initialization file](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_install_configure.md#ricgraph-initialization-file), and reharvest your sources. This is due to the many changes.

2.0

The following improvements have been made to Ricgraph.

Structural change:
- Previously, Ricgraph used the Python module _py2neo_ to connect with the graph database backend Neo4j. This module is end-of-life. Now, Ricgraph uses the Python module _neo4j_. This required many changes, including explicit Cypher calls in the code. This results in a faster Ricgraph, and it may be possible to use other graph database backends that use the same Python module (such as Memgraph or Avantgraph).

Ricgraph Explorer:
- Added a function that finds with which (sub-)organizations a person collaborates.
- Modifications to make Ricgraph Explorer run in a multi-user environment. This includes an Apache config file, and changes so that Ricgraph Explorer can be run as a Linux service, or using WSGI.

Ricgraph:
- Cleanup and optimization of code.
- Added a script to count the number of organizations that contributed to a category, so that you will be able to see which (sub-)organizations collaborate.
- Modifications to make Ricgraph run in a multi-user environment.
- A call to get_personroot_node() or get_all_personroot_nodes() now returns person-root nodes of any type of node.
- Previously, if a new node had a FULL_NAME that was already in Ricgraph, the new node was joined with the node already present. It appears that in case you harvest multiple source systems, this may not be a good idea: a person named _J. Doe_ from source system 1 may be someone else than person _J. Doe_ from source system 2. Thus, this is not done any more, unless you set RICGRAPH_NODEADD_MODE to something else than 'strict'.
- Modified initialization file by renaming a section, and adding and renaming graph database backend parameters.
- Removed function get_edges().

Harvest scripts:
- Added _University Medical Center Utrecht_ to the list of nodes to rename in the batch harvest script _batch_harvest.py_.

Documentation:
- Added the reference publication: Rik D.T. Janssen, Ricgraph: A Flexible and Extensible Graph to Explore Research in Context from Various Systems. January 2024. Submitted to SoftwareX. https://doi.org/10.2139/ssrn.4712466.
- Added use cases as in the reference publication.
- Added [documentation for Ricgraph Explorer](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_explorer.md).
- Added documentation how to run Ricgraph and Ricgraph Explorer in a multi-user environment. Please read [Ricgraph as a server on Linux](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_as_server.md).
- Added a Ricgraph presentation and a table where Ricgraph has been used.
- Added an explation how to dump data in Neo4j Desktop and use it in Neo4j Community Edition.
- Reorganized the documentation structure.
- Updated badges in README.md file.
- And many other improvements and clarifications to the documentation.

GitHub:
- The default branch name of Ricgraph in GitHub has been renamed from _master_ to _main_.

Upgrading:
- If you upgrade from any Ricgraph version, you will need to [re-install Ricgraph](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_install_configure.md), re-create your [Ricgraph initialization file](https://github.com/UtrechtUniversity/ricgraph/blob/main/docs/ricgraph_install_configure.md#ricgraph-initialization-file), and reharvest your sources. This is due to the many changes.

1.14

The following improvements have been made to Ricgraph.

Ricgraph Explorer:
- The option to get more information about persons or their results in an organization is much faster.
- The option to find persons that share research output types with another person is faster.
- Removed the option to find overlap in source systems for an organization.
- Added a transparant favicon.

If you upgrade from Ricgraph v1.13, you do not need to reharvest your sources. If you upgrade from Ricgraph v1.11 or earlier, you do need to reharvest your sources.

1.13

The following improvements have been made to Ricgraph.

Ricgraph Explorer:
- Full rewrite of the code, to make the structure easier to understand and the code easier to extend.
- User experience improvements, such as a new flow through the application, buttons with predefined search queries, and dropdown lists for various input fields.
- Added a cache for nodes.
- Statistics such as the names of the harvested systems, number of nodes and edges, and use of the node cache.
- Speed improvements.

Ricgraph:
- Minor changes related to the rewrite of Ricgraph Explorer.

If you upgrade from Ricgraph v1.12, you do not need to reharvest your sources. If you upgrade from Ricgraph v1.11 or earlier, you do need to reharvest your sources.

Page 2 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.