Code
import pandas as pd
import yaml
from itables import init_notebook_mode, show
import itables.options as opt
from pathlib import Path
import re
# Initialize itables
=True)
init_notebook_mode(all_interactive
# Function to make DOIs clickable
def make_doi_clickable(text):
= r'(https://doi\.org/[^\s)]+)'
doi_pattern return re.sub(doi_pattern, r'<a href="\1" target="_blank">\1</a>', text)
# Create relative path to repos file
# Goes up two levels (../../) from current .qmd location to reach root
= Path('../../data/repos.yml')
repo_path
# Load YAML data
with open(repo_path, 'r') as f:
= yaml.safe_load(f)
data
# Convert to DataFrame
= pd.DataFrame(data['repos'])
df
# Make DOIs clickable in reference column
'reference'] = df['reference'].apply(make_doi_clickable)
df[
# Format the repo column to include HTML links
'repo'] = df.apply(lambda x: f'<a href="{x["repo"]["url"]}" target="_blank">{x["repo"]["name"]}</a>', axis=1)
df[
# Join topics with semicolons
'topics'] = df['topics'].apply(lambda x: '; '.join(x))
df[
# Configure itables options
= ["display", "cell-border"]
opt.classes = [
opt.columnDefs # Reference column
{ "width": "50%",
"targets": 0
}, # Year column
{ "width": "5%",
"targets": 1,
"className": "dt-left"
}, # Repo column
{ "width": "15%",
"targets": 2
}, # Topics column
{ "width": "30%",
"targets": 3
}
]= False
opt.showIndex
# By default, show newest to oldest
= df.sort_values('year', ascending=False)
sorted_df
# Display the interactive table
show(sorted_df)
reference | year | repo | topics |
---|---|---|---|
Loading ITables v2.2.4 from the init_notebook_mode cell...
(need help?) |