CoolFace
Apppublic

awacke1/Github-Streamlit

sourceHugging Facemitupdated 4y agoView on Hugging Face
1likes
app.py18 linesDownload Raw Back to root
1import streamlit as st2import requests3import github 4import asyncio5 6async def main(): 7    client = await github.GHClient()8 9        10    # Set up the Streamlit app11    st.title("GitHub Repository Downloader")12    13    user = await client.get_user(user='GithubPythonBot')14    15    print(user)16    print(user.html_url)17 18main()