import requests import gradio as gr from datetime import datetime # 테스트를 위해 Gradio 공식 계정으로 설정 USERNAME = "openfree" def format_timestamp(timestamp): if timestamp: dt = datetime.fromisoformat(timestamp.replace('Z', '+00:00')) return dt.strftime('%Y-%m-%d %H:%M') return 'N/A' def get_space_card(space): """Generate HTML card for a space""" return f"""

{space["title"]}

{space.get("description", "No description available")}

View Space
""" def get_user_spaces(): # Hugging Face API v2 사용 url = f"https://huggingface.co/api/spaces?search={USERNAME}" headers = { "Accept": "application/json", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" } try: response = requests.get(url, headers=headers) print(f"Status Code: {response.status_code}") # 디버깅용 print(f"Response: {response.text[:500]}...") # 디버깅용 if response.status_code != 200: return f"Error: Failed to fetch spaces (Status Code: {response.status_code})" spaces_data = response.json() # 사용자의 spaces만 필터링 user_spaces = [] for space in spaces_data: if space.get('author', {}).get('name', '').lower() == USERNAME.lower(): space_info = { "title": space.get('id', '').split('/')[-1], "description": space.get('description', ''), "url": f"https://huggingface.co/spaces/{space.get('id', '')}", } user_spaces.append(space_info) if not user_spaces: return f"""

No public Spaces found for user: {USERNAME}

Try visiting: https://huggingface.co/{USERNAME}

""" # Create HTML grid layout html_content = f"""

Found {len(user_spaces)} public spaces for {USERNAME}

{"".join(get_space_card(space) for space in user_spaces)}
""" return html_content except Exception as e: print(f"Error: {str(e)}") # 디버깅용 return f"""

Error occurred while fetching spaces

Error details: {str(e)}

Please try again later or check if the username is correct.

""" # Creating the Gradio interface app = gr.Interface( fn=get_user_spaces, inputs=None, outputs=gr.HTML(), title=f"Hugging Face Public Spaces - {USERNAME}", description=f"Displays public Spaces from {USERNAME}", theme=gr.themes.Soft(), css=""" .gradio-container { max-width: 100% !important; } """ ) # Launch the Gradio app with sharing enabled if __name__ == "__main__": app.launch(share=True) # share=True를 추가하여 공개 링크 생성