awacke1's picture
Update app.py
16efbc1
raw
history blame contribute delete
327 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)
main()