{# -*- coding: utf-8 -*-
Copyright (C) 2025 TU Wien.
Invenio Theme TUW is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
#}
{%- extends config.BASE_TEMPLATE %}
{%- block page_hero %}
{%- endblock page_hero %}
{%- block page_body %}
{{ _("The VRE extension can be easily installed via") }}
{{ _("Why Use It?") }}
{{ _("About the VRE extension") }}
pip install vre-repository-connector
.
{{ _("Use Case Example:") }} {{ _("Assume, for instance, that you are a climate scientist who must examine the most recent temperature data.") }} {{ _("With the VRE Repository Connector, you can write a few lines of Python code in your Jupyter Notebook to retrieve the dataset and start analyzing it immediately:") }}
{#- ################# PREFORMATTED AREA TEXT BEGIN ################# #} # Example Jupyter Notebook using the VRE Connector [1]: pip install vre-repository-connector [1]: ... [2]: import vre_repository_connector as vrc doi = "https://doi.org/10.12345/abcde-12345" # Retrieve a specific dataset's file by its DOI [3]: vrc.download(doi) [3]: 1) x.zip 2) y.zip 3) z.zip Select [1-3]: 2 '/tmp/tmpj8huipi7/abcde-12345/y.zip' # Proceed with your analysis using libraries like pandas or matplotlib {#- ################## PREFORMATTED AREA TEXT END ################## -#}
{{ _("And just like that, you\'re ready to analyze!") }}
{{ _("In addition to saving time, the VRE Repository Connector promotes repeatable, data-driven research by bridging the gap between interactive research tools and robust repository capabilities.") }} {{ _("VRE is intended to make your research workflow as integrated and efficient as possible, whether you're exploring new datasets or automating your analysis pipeline — all from within Jupyter.") }} 🚀
{%- trans trimmed vre_repo_page = "https://gitlab.tuwien.ac.at/crdm/vre-repository-connector" %} For further details, please refer to the VRE Repository Connector page. {%- endtrans %}
{%- block javascript %} {{ super() }} {{ webpack["invenio-theme-tuw-clipboard.js"] }} {%- endblock javascript %} {%- endblock page_body %}