awacke1 commited on
Commit
16efbc1
·
1 Parent(s): c414c49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -6,11 +6,13 @@ import asyncio
6
  async def main():
7
  client = await github.GHClient()
8
 
 
 
 
9
 
10
- # Set up the Streamlit app
11
- st.title("GitHub Repository Downloader")
12
-
13
- user = await client.get_user(user='GithubPythonBot')
14
 
15
- print(user)
16
- print(user.html_url)
 
6
  async def main():
7
  client = await github.GHClient()
8
 
9
+
10
+ # Set up the Streamlit app
11
+ st.title("GitHub Repository Downloader")
12
 
13
+ user = await client.get_user(user='GithubPythonBot')
14
+
15
+ print(user)
16
+ print(user.html_url)
17
 
18
+ main()