Spaces:
Sleeping
Sleeping
File size: 303 Bytes
b693c5c c121aed f3262d9 b693c5c c121aed 16aa282 ebea64f c121aed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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)
|