From 71fd8601db8a7a675d28dcb2e333fe7c99228e42 Mon Sep 17 00:00:00 2001 From: cedricd Date: Mon, 23 Sep 2024 13:25:28 +0200 Subject: [PATCH] Refactor entrypoint.py to print project titles --- entrypoint.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/entrypoint.py b/entrypoint.py index 8763502..bd5edf9 100644 --- a/entrypoint.py +++ b/entrypoint.py @@ -118,6 +118,10 @@ def get_rohub_id(): print(projects_df) + # print all the titles of the projects + titles = projects_df["title"] + print(titles) + # search df for project by filtering on title rohub_project = projects_df[projects_df["title"] == repo_name] rohub_id = rohub_project["identifier"]