Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -6,11 +6,13 @@ import asyncio
|
|
6 |
async def main():
|
7 |
client = await github.GHClient()
|
8 |
|
|
|
|
|
|
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
user
|
14 |
|
15 |
-
|
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()
|
|