Spaces:
Runtime error
Runtime error
File size: 770 Bytes
a431d31 2e3080b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
from datasets import load_dataset
import streamlit as st
@st.cache()
def get_repo_names():
list_of_repo_names = ["lvwerra/test", "lvwerra/test2", "numpy/numpy"]
return list_of_repo_names
st.title("Am I in The Stack?")
repo_names = get_repo_names()
username = st.text_input("GitHub Username:")
if st.button("Check!"):
list_of_repos = [repo_name for repo_name in repo_names if repo_name.split("/")[0]==username]
if len(list_of_repos)==0:
st.markdown("**No repository found in The Stack**")
else:
if len(list_of_repos)==1:
st.markdown("**1 repository found in The Stack**")
else:
st.markdown(f"**{len(list_of_repos)} repositories found in The Stack**")
st.text("\n".join(list_of_repos)) |