This table shows the project proposals currently open as issues on the repository,
their status (whether they are being scoped, or have been submitted, etc), and
whether the project needs a mentor to steward it. Please read
Labelling project proposals to understand the labels.
Tip
Refresh the page to keep it up-to-date!
import pandas as pd
from pyodide.http import open_url
# Get the data
data = pd.read_csv(
open_url(
"https://raw.githubusercontent.com/jupyterhub/outreachy/issue-data/project-table.csv"
)
)
data.fillna(" ", inplace=True)
# Function to display the table
display(data.style.hide(axis="index"), target="project-table", append=False)
{
"splashscreen": {
"autoclose": true
},
"packages": [
"jinja2",
"pandas"
]
}