awacke1 commited on
Commit
281bb73
ยท
verified ยท
1 Parent(s): f389421

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +86 -25
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
- st.title("Hugging Face User Content Display")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
- # Convert the default users list to a string
 
 
 
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
- profile_link = f"https://huggingface.co/{username}"
58
- profile_emoji = "๐Ÿ”—"
59
-
60
- models = [f"[{model.modelId}](https://huggingface.co/{model.modelId})" for model in result['models']]
61
- datasets = [f"[{dataset.id}](https://huggingface.co/datasets/{dataset.id})" for dataset in result['datasets']]
62
- spaces = [f"[{space.id}](https://huggingface.co/spaces/{space.id})" for space in result['spaces']]
63
-
64
- st.markdown(f"**{username}** {profile_emoji} [Profile]({profile_link})")
65
- st.markdown("**Models:**")
66
- st.markdown("\n".join(models) if models else "No models found")
67
- st.markdown("**Datasets:**")
68
- st.markdown("\n".join(datasets) if datasets else "No datasets found")
69
- st.markdown("**Spaces:**")
70
- st.markdown("\n".join(spaces) if spaces else "No spaces found")
71
- st.markdown("---")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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, datasets, and spaces along with a link to their Hugging Face profile.
 
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
  """)