File size: 2,201 Bytes
91c1d45
8fcba35
5cb9eb4
8fcba35
5cb9eb4
8fcba35
 
 
 
 
 
 
 
5cb9eb4
 
 
 
 
 
 
 
 
 
 
 
 
8fcba35
5cb9eb4
 
 
 
8fcba35
 
5cb9eb4
 
 
 
35865e4
5cb9eb4
 
 
35865e4
 
 
 
 
5cb9eb4
 
8fcba35
 
5cb9eb4
 
8fcba35
 
 
 
 
 
 
 
747ccea
 
 
8fcba35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import requests
import gradio as gr
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()
        
        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\n"
            continue
        
        space_id = space.get('id', 'Unknown')
        space_name = space.get('title', space.get('name', 'Unknown'))
        author_data = space.get('author', {})
        space_author = author_data.get('name', 'Unknown') if isinstance(author_data, dict) else '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()