import streamlit as st import requests import github import asyncio async def main(): client = await github.GHClient() # Set up the Streamlit app st.title("GitHub Repository Downloader") user = await client.get_user(user='GithubPythonBot') print(user) print(user.html_url) main()