Spaces:
Running
Running
import requests | |
import gradio as gr | |
import json | |
from typing import List, Dict, Union | |
def get_most_liked_spaces(limit: int = 10) -> Union[List[Dict], str]: | |
url = "https://huggingface.co/api/spaces" | |
params = { | |
"sort": "likes", | |
"direction": -1, | |
"limit": limit, | |
"full": "true" | |
} | |
try: | |
response = requests.get(url, params=params) | |
response.raise_for_status() | |
data = response.json() | |
# ๋๋ฒ๊น : ์ ์ฒด ์๋ต ๊ตฌ์กฐ ์ถ๋ ฅ | |
print("API Response Structure:") | |
print(json.dumps(data[:2], indent=2)) # ์ฒ์ ๋ ๊ฐ์ ํญ๋ชฉ๋ง ์ถ๋ ฅ | |
if isinstance(data, list): | |
return data | |
else: | |
return f"Unexpected API response format: {type(data)}" | |
except requests.RequestException as e: | |
return f"API request error: {str(e)}" | |
except ValueError as e: | |
return f"JSON decoding error: {str(e)}" | |
def format_spaces(spaces: Union[List[Dict], str]) -> str: | |
if isinstance(spaces, str): | |
return spaces # ์ด๋ฏธ ์ค๋ฅ ๋ฉ์์ง์ธ ๊ฒฝ์ฐ ๊ทธ๋๋ก ๋ฐํ | |
output = "" | |
for idx, space in enumerate(spaces, 1): | |
if not isinstance(space, dict): | |
output += f"{idx}. Unexpected space data format: {type(space)}\n" | |
output += f" Content: {space}\n\n" | |
continue | |
# 'id' ํ๋์์ space ์ด๋ฆ ์ถ์ถ | |
space_id = space.get('id', 'Unknown') | |
space_name = space_id.split('/')[-1] if '/' in space_id else space_id | |
# 'author' ํ๋์์ ์์ฑ์ ์ ๋ณด ์ถ์ถ | |
space_author = space.get('author', 'Unknown') | |
if isinstance(space_author, dict): | |
space_author = space_author.get('user', space_author.get('name', 'Unknown')) | |
space_likes = space.get('likes', 'N/A') | |
output += f"{idx}. {space_name} by {space_author}\n" | |
output += f" Likes: {space_likes}\n" | |
output += f" URL: https://huggingface.co/spaces/{space_id}\n\n" | |
return output if output else "No valid space data found." | |
def get_spaces_list(limit: int) -> str: | |
spaces = get_most_liked_spaces(limit) | |
return format_spaces(spaces) | |
# Gradio ์ธํฐํ์ด์ค ์ ์ | |
iface = gr.Interface( | |
fn=get_spaces_list, | |
inputs=gr.Slider(minimum=1, maximum=50, step=1, label="Number of Spaces to Display", value=10), | |
outputs="text", | |
title="Hugging Face Most Liked Spaces", | |
description="Display the most liked Hugging Face Spaces in descending order.", | |
) | |
if __name__ == "__main__": | |
iface.launch() |