awacke1's picture
Update app.py
c414c49
raw
history blame
287 Bytes
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)