Update app.py
Browse files
app.py
CHANGED
@@ -2,10 +2,13 @@ import streamlit as st
|
|
2 |
from huggingface_hub import HfApi
|
3 |
import pandas as pd
|
4 |
import asyncio
|
|
|
|
|
5 |
|
|
|
6 |
api = HfApi()
|
7 |
|
8 |
-
# Default list of Hugging Face usernames
|
9 |
default_users = {
|
10 |
"users": [
|
11 |
"awacke1", "rogerxavier", "jonatasgrosman", "kenshinn", "Csplk", "DavidVivancos",
|
@@ -17,67 +20,125 @@ default_users = {
|
|
17 |
]
|
18 |
}
|
19 |
|
|
|
20 |
async def fetch_user_content(username):
|
21 |
try:
|
|
|
22 |
models = await asyncio.to_thread(api.list_models, author=username)
|
23 |
datasets = await asyncio.to_thread(api.list_datasets, author=username)
|
24 |
-
spaces = await asyncio.to_thread(api.list_spaces, author=username)
|
25 |
|
26 |
return {
|
27 |
"username": username,
|
28 |
"models": models,
|
29 |
-
"datasets": datasets
|
30 |
-
"spaces": spaces
|
31 |
}
|
32 |
except Exception as e:
|
|
|
33 |
return {"username": username, "error": str(e)}
|
34 |
|
|
|
35 |
async def fetch_all_users(usernames):
|
36 |
tasks = [fetch_user_content(username) for username in usernames]
|
37 |
return await asyncio.gather(*tasks)
|
38 |
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
#
|
|
|
|
|
|
|
42 |
default_users_str = "\n".join(default_users["users"])
|
43 |
|
44 |
-
# Text area with default list of usernames
|
45 |
usernames = st.text_area("Enter Hugging Face usernames (one per line):", value=default_users_str, height=300)
|
46 |
|
|
|
47 |
if st.button("Show User Content"):
|
48 |
if usernames:
|
49 |
username_list = [username.strip() for username in usernames.split('\n') if username.strip()]
|
50 |
|
|
|
51 |
results = asyncio.run(fetch_all_users(username_list))
|
52 |
|
53 |
st.markdown("### User Content Overview")
|
54 |
for result in results:
|
55 |
username = result["username"]
|
56 |
if "error" not in result:
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
else:
|
73 |
-
st.warning(f"{username}: {result['error']}")
|
74 |
|
75 |
else:
|
76 |
-
st.warning("Please enter at least one username.")
|
77 |
|
|
|
78 |
st.sidebar.markdown("""
|
79 |
## How to use:
|
80 |
1. The text area is pre-filled with a list of Hugging Face usernames. You can edit this list or add more usernames.
|
81 |
2. Click 'Show User Content'.
|
82 |
-
3. View the user's models
|
|
|
83 |
""")
|
|
|
2 |
from huggingface_hub import HfApi
|
3 |
import pandas as pd
|
4 |
import asyncio
|
5 |
+
import base64
|
6 |
+
from io import BytesIO
|
7 |
|
8 |
+
# Initialize the Hugging Face API
|
9 |
api = HfApi()
|
10 |
|
11 |
+
# Default list of Hugging Face usernames - where all the magic begins! ๐ช
|
12 |
default_users = {
|
13 |
"users": [
|
14 |
"awacke1", "rogerxavier", "jonatasgrosman", "kenshinn", "Csplk", "DavidVivancos",
|
|
|
20 |
]
|
21 |
}
|
22 |
|
23 |
+
# Asynchronous function to fetch user content - because why wait when you can multitask? ๐
|
24 |
async def fetch_user_content(username):
|
25 |
try:
|
26 |
+
# Fetch models and datasets - the stars of our show! ๐
|
27 |
models = await asyncio.to_thread(api.list_models, author=username)
|
28 |
datasets = await asyncio.to_thread(api.list_datasets, author=username)
|
|
|
29 |
|
30 |
return {
|
31 |
"username": username,
|
32 |
"models": models,
|
33 |
+
"datasets": datasets
|
|
|
34 |
}
|
35 |
except Exception as e:
|
36 |
+
# Oops! Something went wrong - blame it on the gremlins! ๐
|
37 |
return {"username": username, "error": str(e)}
|
38 |
|
39 |
+
# Fetch all users concurrently - more hands (or threads) make light work! ๐ช
|
40 |
async def fetch_all_users(usernames):
|
41 |
tasks = [fetch_user_content(username) for username in usernames]
|
42 |
return await asyncio.gather(*tasks)
|
43 |
|
44 |
+
# Generate HTML content for a user and encode it as Base64 for download - because who doesn't love a good download link? ๐พ
|
45 |
+
def generate_html_page(username, models, datasets):
|
46 |
+
html_content = f"""
|
47 |
+
<html>
|
48 |
+
<head>
|
49 |
+
<title>{username}'s Hugging Face Content</title>
|
50 |
+
</head>
|
51 |
+
<body>
|
52 |
+
<h1>{username}'s Hugging Face Profile</h1>
|
53 |
+
<p><a href="https://huggingface.co/{username}">๐ Profile Link</a></p>
|
54 |
+
<h2>๐ง Models</h2>
|
55 |
+
<ul>
|
56 |
+
"""
|
57 |
+
for model in models:
|
58 |
+
model_name = model.modelId.split("/")[-1]
|
59 |
+
html_content += f'<li><a href="https://huggingface.co/{model.modelId}">{model_name}</a></li>'
|
60 |
+
|
61 |
+
html_content += """
|
62 |
+
</ul>
|
63 |
+
<h2>๐ Datasets</h2>
|
64 |
+
<ul>
|
65 |
+
"""
|
66 |
+
for dataset in datasets:
|
67 |
+
dataset_name = dataset.id.split("/")[-1]
|
68 |
+
html_content += f'<li><a href="https://huggingface.co/datasets/{dataset.id}">{dataset_name}</a></li>'
|
69 |
+
|
70 |
+
html_content += """
|
71 |
+
</ul>
|
72 |
+
</body>
|
73 |
+
</html>
|
74 |
+
"""
|
75 |
+
# Encode the HTML content as Base64 - like wrapping it in a fancy gift box! ๐
|
76 |
+
return base64.b64encode(html_content.encode()).decode()
|
77 |
|
78 |
+
# Streamlit app setup - the nerve center of our operation! ๐๏ธ
|
79 |
+
st.title("Hugging Face User Content Display - Let's Automate Some Fun! ๐")
|
80 |
+
|
81 |
+
# Convert the default users list to a string - because nobody likes typing out long lists! ๐
|
82 |
default_users_str = "\n".join(default_users["users"])
|
83 |
|
84 |
+
# Text area with default list of usernames - feel free to add your friends! ๐ฅ
|
85 |
usernames = st.text_area("Enter Hugging Face usernames (one per line):", value=default_users_str, height=300)
|
86 |
|
87 |
+
# Show User Content button - the big red button! (But actually it's blue) ๐ฑ๏ธ
|
88 |
if st.button("Show User Content"):
|
89 |
if usernames:
|
90 |
username_list = [username.strip() for username in usernames.split('\n') if username.strip()]
|
91 |
|
92 |
+
# Run the asyncio loop to fetch all users - time to unleash the hounds! ๐
|
93 |
results = asyncio.run(fetch_all_users(username_list))
|
94 |
|
95 |
st.markdown("### User Content Overview")
|
96 |
for result in results:
|
97 |
username = result["username"]
|
98 |
if "error" not in result:
|
99 |
+
with st.container():
|
100 |
+
# Profile link - because everyone deserves their 15 seconds of fame! ๐ค
|
101 |
+
st.markdown(f"**{username}** [๏ฟฝ๏ฟฝ๏ฟฝ Profile](https://huggingface.co/{username})")
|
102 |
+
|
103 |
+
# Create columns for models and datasets - divide and conquer! ๐๏ธ
|
104 |
+
col1, col2 = st.columns(2)
|
105 |
+
|
106 |
+
# Models section with emoji - ๐ง because AI models are brainy! ๐ง
|
107 |
+
with col1:
|
108 |
+
st.markdown("**Models:** ๐ง ")
|
109 |
+
if result['models']:
|
110 |
+
for model in result['models']:
|
111 |
+
model_name = model.modelId.split("/")[-1]
|
112 |
+
st.markdown(f"- [{model_name}](https://huggingface.co/{model.modelId})")
|
113 |
+
else:
|
114 |
+
st.markdown("No models found. Did you check under the rug? ๐ต๏ธโโ๏ธ")
|
115 |
+
|
116 |
+
# Datasets section with emoji - ๐ because data is the foundation of AI! ๐
|
117 |
+
with col2:
|
118 |
+
st.markdown("**Datasets:** ๐")
|
119 |
+
if result['datasets']:
|
120 |
+
for dataset in result['datasets']:
|
121 |
+
dataset_name = dataset.id.split("/")[-1]
|
122 |
+
st.markdown(f"- [{dataset_name}](https://huggingface.co/datasets/{dataset.id})")
|
123 |
+
else:
|
124 |
+
st.markdown("No datasets found. Maybe theyโre still baking in the oven? ๐ช")
|
125 |
+
|
126 |
+
# Generate HTML page and provide download link - because who wouldn't want a custom webpage? ๐
|
127 |
+
html_page = generate_html_page(username, result['models'], result['datasets'])
|
128 |
+
st.markdown(f"[๐ Download {username}'s HTML Page](data:text/html;base64,{html_page})")
|
129 |
+
|
130 |
+
st.markdown("---")
|
131 |
else:
|
132 |
+
st.warning(f"{username}: {result['error']} - Looks like the AI needs a coffee break โ")
|
133 |
|
134 |
else:
|
135 |
+
st.warning("Please enter at least one username. Don't be shy! ๐
")
|
136 |
|
137 |
+
# Sidebar instructions - just in case you get lost! ๐บ๏ธ
|
138 |
st.sidebar.markdown("""
|
139 |
## How to use:
|
140 |
1. The text area is pre-filled with a list of Hugging Face usernames. You can edit this list or add more usernames.
|
141 |
2. Click 'Show User Content'.
|
142 |
+
3. View the user's models and datasets along with a link to their Hugging Face profile.
|
143 |
+
4. Download an HTML page for each user to use the absolute links offline!
|
144 |
""")
|