Planned intervention: On Wednesday April 3rd 05:30 UTC Zenodo will be unavailable for up to 2-10 minutes to perform a storage cluster upgrade.
Published June 27, 2018 | Version 0.2.0
Software Open

resosuma

  • 1. Humboldt-Universität zu Berlin, Department of German Studies and Linguistics, Berlin, Germany

Description

resosuma (short for research software sustainability map) is a package for Python 3 which provides a data model (directed graph) for activities in the research software sustainability space ("the space").

In the graph, actors (i.e., entities that act within the space) and actees (i.e., entities which are acted on) are represented as nodes, and actions are represented as edges.

Currently, a resosuma model can be instantiated by reading the data from 3-column CSV, where the first column is the actor of an action, the second column is the action itself, and the third column is the actee of the action.

Usage

To instantiate a resosuma model of type ActivityGraph, you can call:

from resosuma.graph.activitygraph import ActivityGraph

graph = ActivityGraph()
graph.read_csv(csvpath)

Once the model is instantiated, you can inspect it via:

graph.get_activities()
graph.get_nodes()

Scripts

visualize.py visualizes the model via graphviz.:

usage: visualize.py [-h] csv_file output {svg,pdf,png}

positional arguments:
  csv_file       The path of the input CSV file
  output         The path of the output file
  {svg,pdf,png}  The output format

optional arguments:
  -h, --help     show the help message and exit

Files

resosuma-0.2.0.zip

Files (18.3 kB)

Name Size Download all
md5:cd9a3c13dade80af9d03c2e687e97e18
18.3 kB Preview Download

Additional details