b693c5c c121aed f3262d9 b693c5c c121aed 16aa282 c121aed b693c5c
1
2
3
4
5
6
7
8
9
10
11
12
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(): st.write(repo.name) st.write("test")