in-the-stack / app.py
lvwerra's picture
lvwerra HF staff
Create app.py
a431d31
raw
history blame
516 Bytes
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]
st.text("## Repositories in The Stack:")
st.text("\n".join(list_of_repos))