Skip to content

Commit

Permalink
Refactor entrypoint.py to print project titles
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricdcc committed Sep 23, 2024
1 parent f85e0e4 commit 71fd860
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 71fd860

Please sign in to comment.