from github import Github import os import streamlit as st g = Github(os.environ.get('github')) org = g.get_organization("bigcode-project") for repo in org.get_repos(): s = "###" + repo.name + "\n" for issue in repo.get_issues(): s += "- " + issue.name + "\n" st.markdown(s)