Spaces:
Paused
Paused
Update app-backup.py
Browse files- app-backup.py +141 -53
app-backup.py
CHANGED
|
@@ -2,6 +2,38 @@ import requests
|
|
| 2 |
import gradio as gr
|
| 3 |
from datetime import datetime
|
| 4 |
import random
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
USERNAME = "openfree"
|
| 7 |
|
|
@@ -193,9 +225,13 @@ def get_space_card(space, index):
|
|
| 193 |
"""
|
| 194 |
|
| 195 |
def get_vercel_deployments():
|
| 196 |
-
"""Vercel API를 통해 배포된 서비스 정보 가져오기"""
|
| 197 |
token = "A8IFZmgW2cqA4yUNlLPnci0N"
|
| 198 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 199 |
|
| 200 |
headers = {
|
| 201 |
"Authorization": f"Bearer {token}",
|
|
@@ -203,57 +239,115 @@ def get_vercel_deployments():
|
|
| 203 |
}
|
| 204 |
|
| 205 |
try:
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 210 |
|
| 211 |
-
|
|
|
|
|
|
|
|
|
|
| 212 |
|
| 213 |
# 상태가 'READY'이고 'url'이 있는 배포만 필터링하고 'javis1' 제외
|
| 214 |
active_deployments = [
|
| 215 |
-
dep for dep in
|
| 216 |
if dep.get('state') == 'READY' and
|
| 217 |
dep.get('url') and
|
| 218 |
-
'javis1' not in dep.get('name', '').lower()
|
| 219 |
]
|
| 220 |
|
|
|
|
| 221 |
return active_deployments
|
|
|
|
| 222 |
except Exception as e:
|
| 223 |
print(f"Error fetching Vercel deployments: {str(e)}")
|
| 224 |
return []
|
| 225 |
|
| 226 |
|
| 227 |
-
def get_vercel_card(deployment, index):
|
| 228 |
-
"""
|
| 229 |
raw_url = deployment.get('url', '')
|
| 230 |
|
| 231 |
-
# URL 처리
|
| 232 |
if raw_url.startswith('http'):
|
| 233 |
-
url = raw_url
|
| 234 |
else:
|
| 235 |
-
|
| 236 |
-
url = f"{project_name}.vercel.app"
|
| 237 |
-
|
| 238 |
-
# Hugging Face 스페이스 URL인 경우 직접 사용
|
| 239 |
-
if 'huggingface.co' in url:
|
| 240 |
-
final_url = url
|
| 241 |
-
else:
|
| 242 |
-
final_url = f"https://{url}" if not url.startswith('http') else url
|
| 243 |
|
|
|
|
| 244 |
created = format_timestamp(deployment.get('created'))
|
| 245 |
-
name = deployment.get('name', 'Unnamed Project')
|
| 246 |
state = deployment.get('state', 'N/A')
|
| 247 |
|
| 248 |
-
#
|
| 249 |
card_id = f"vercel-card-{url.replace('.', '-').replace('/', '-')}"
|
| 250 |
|
| 251 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 252 |
|
| 253 |
-
bg_color = get_pastel_color(index + 20)
|
| 254 |
tech_emojis = ['⚡', '🚀', '🌟', '✨', '💫', '🔥', '🌈', '🎯', '🎨', '🔮']
|
| 255 |
random_emojis = random.sample(tech_emojis, 3)
|
| 256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 257 |
|
| 258 |
return f"""
|
| 259 |
<div id="{card_id}" class="vercel-card"
|
|
@@ -269,7 +363,7 @@ def get_vercel_card(deployment, index):
|
|
| 269 |
overflow: hidden;'
|
| 270 |
onmouseover='this.style.transform="translateY(-5px) scale(1.02)"; this.style.boxShadow="0 8px 25px rgba(0,0,0,0.15)"'
|
| 271 |
onmouseout='this.style.transform="translateY(0) scale(1)"; this.style.boxShadow="0 4px 15px rgba(0,0,0,0.1)"'>
|
| 272 |
-
|
| 273 |
<h3 style='color: #2d2d2d;
|
| 274 |
margin: 0 0 20px 0;
|
| 275 |
font-size: 1.4em;
|
|
@@ -277,25 +371,13 @@ def get_vercel_card(deployment, index):
|
|
| 277 |
align-items: center;
|
| 278 |
gap: 10px;'>
|
| 279 |
<span style='font-size: 1.3em'>{random_emojis[0]}</span>
|
| 280 |
-
<a href='{
|
| 281 |
style='text-decoration: none; color: #2d2d2d;'>
|
| 282 |
{name}
|
| 283 |
</a>
|
| 284 |
<span style='font-size: 1.3em'>{random_emojis[1]}</span>
|
| 285 |
</h3>
|
| 286 |
-
|
| 287 |
-
<div style='margin: 15px 0; color: #444; background: rgba(255,255,255,0.5);
|
| 288 |
-
padding: 15px; border-radius: 12px;'>
|
| 289 |
-
<p style='margin: 8px 0;'>
|
| 290 |
-
<strong>Status:</strong> ✅ {state}
|
| 291 |
-
</p>
|
| 292 |
-
<p style='margin: 8px 0;'>
|
| 293 |
-
<strong>Created:</strong> 📅 {created}
|
| 294 |
-
</p>
|
| 295 |
-
<p style='margin: 8px 0;'>
|
| 296 |
-
<strong>URL:</strong> 🔗 https://{url}
|
| 297 |
-
</p>
|
| 298 |
-
</div>
|
| 299 |
<div style='margin-top: 20px; display: flex; justify-content: space-between; align-items: center;'>
|
| 300 |
<div class="like-section" style="display: flex; align-items: center; gap: 10px;">
|
| 301 |
<button onclick="toggleLike('{card_id}')" class="like-button"
|
|
@@ -304,7 +386,7 @@ def get_vercel_card(deployment, index):
|
|
| 304 |
</button>
|
| 305 |
<span class="like-count" style="font-size: 1.2em; color: #666;">0</span>
|
| 306 |
</div>
|
| 307 |
-
<a href='{
|
| 308 |
style='background: linear-gradient(45deg, #0084ff, #00a3ff);
|
| 309 |
color: white;
|
| 310 |
padding: 10px 20px;
|
|
@@ -517,7 +599,6 @@ TOP_BEST_URLS = [
|
|
| 517 |
]
|
| 518 |
|
| 519 |
|
| 520 |
-
|
| 521 |
def get_user_spaces():
|
| 522 |
# 기존 Hugging Face 스페이스 가져오기
|
| 523 |
url = f"https://huggingface.co/api/spaces?author={USERNAME}&limit=500"
|
|
@@ -537,11 +618,12 @@ def get_user_spaces():
|
|
| 537 |
if not should_exclude_space(space.get('id', '').split('/')[-1])
|
| 538 |
]
|
| 539 |
|
| 540 |
-
#
|
| 541 |
-
|
| 542 |
|
| 543 |
-
#
|
| 544 |
-
|
|
|
|
| 545 |
|
| 546 |
html_content = f"""
|
| 547 |
<div style='padding: 20px; background-color: #f5f5f5;'>
|
|
@@ -555,23 +637,28 @@ def get_user_spaces():
|
|
| 555 |
</a>
|
| 556 |
</p>
|
| 557 |
<p style='color: #666; margin: 0;'>
|
| 558 |
-
Found {
|
|
|
|
| 559 |
</p>
|
| 560 |
</div>
|
| 561 |
|
| 562 |
-
|
| 563 |
<!-- Top Best -->
|
| 564 |
<h3 style='color: #333; margin: 20px 0;'>🏆 Top Best</h3>
|
| 565 |
<div style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;'>
|
| 566 |
-
{"".join(get_vercel_card(
|
| 567 |
-
|
|
|
|
|
|
|
|
|
|
| 568 |
</div>
|
| 569 |
|
| 570 |
<!-- Vercel Deployments -->
|
|
|
|
| 571 |
<h3 style='color: #333; margin: 20px 0;'>⚡ Vercel Deployments</h3>
|
| 572 |
<div id="vercel-container" style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;'>
|
| 573 |
{"".join(get_vercel_card(dep, idx) for idx, dep in enumerate(vercel_deployments))}
|
| 574 |
</div>
|
|
|
|
| 575 |
|
| 576 |
<!-- Hugging Face Spaces -->
|
| 577 |
<h3 style='color: #333; margin: 20px 0;'>🤗 Hugging Face Spaces</h3>
|
|
@@ -633,7 +720,6 @@ def get_user_spaces():
|
|
| 633 |
</script>
|
| 634 |
"""
|
| 635 |
|
| 636 |
-
|
| 637 |
return html_content
|
| 638 |
|
| 639 |
except Exception as e:
|
|
@@ -645,12 +731,14 @@ def get_user_spaces():
|
|
| 645 |
<p>Please try again later.</p>
|
| 646 |
</div>
|
| 647 |
"""
|
|
|
|
| 648 |
|
| 649 |
# Creating the Gradio interface
|
| 650 |
demo = gr.Blocks()
|
| 651 |
|
| 652 |
with demo:
|
| 653 |
-
html_output = gr.HTML(value=get_user_spaces())
|
| 654 |
|
| 655 |
if __name__ == "__main__":
|
| 656 |
-
demo.launch()
|
|
|
|
|
|
| 2 |
import gradio as gr
|
| 3 |
from datetime import datetime
|
| 4 |
import random
|
| 5 |
+
from selenium import webdriver
|
| 6 |
+
from selenium.common.exceptions import WebDriverException
|
| 7 |
+
from PIL import Image
|
| 8 |
+
from io import BytesIO
|
| 9 |
+
import base64
|
| 10 |
+
|
| 11 |
+
def take_screenshot(url):
|
| 12 |
+
"""웹사이트 스크린샷 촬영 함수"""
|
| 13 |
+
if not url.startswith('http'):
|
| 14 |
+
url = f"https://{url}"
|
| 15 |
+
|
| 16 |
+
options = webdriver.ChromeOptions()
|
| 17 |
+
options.add_argument('--headless')
|
| 18 |
+
options.add_argument('--no-sandbox')
|
| 19 |
+
options.add_argument('--disable-dev-shm-usage')
|
| 20 |
+
options.add_argument('--window-size=1080,720')
|
| 21 |
+
|
| 22 |
+
try:
|
| 23 |
+
driver = webdriver.Chrome(options=options)
|
| 24 |
+
driver.get(url)
|
| 25 |
+
driver.implicitly_wait(10)
|
| 26 |
+
screenshot = driver.get_screenshot_as_png()
|
| 27 |
+
img = Image.open(BytesIO(screenshot))
|
| 28 |
+
buffered = BytesIO()
|
| 29 |
+
img.save(buffered, format="PNG")
|
| 30 |
+
return base64.b64encode(buffered.getvalue()).decode()
|
| 31 |
+
except WebDriverException as e:
|
| 32 |
+
print(f"스크린샷 촬영 실패: {str(e)}")
|
| 33 |
+
return None
|
| 34 |
+
finally:
|
| 35 |
+
if 'driver' in locals():
|
| 36 |
+
driver.quit()
|
| 37 |
|
| 38 |
USERNAME = "openfree"
|
| 39 |
|
|
|
|
| 225 |
"""
|
| 226 |
|
| 227 |
def get_vercel_deployments():
|
| 228 |
+
"""Vercel API를 통해 모든 배포된 서비스 정보 가져오기 (페이지네이션 적용)"""
|
| 229 |
token = "A8IFZmgW2cqA4yUNlLPnci0N"
|
| 230 |
+
base_url = "https://api.vercel.com/v6/deployments"
|
| 231 |
+
all_deployments = []
|
| 232 |
+
has_next = True
|
| 233 |
+
page = 1
|
| 234 |
+
until = None # 첫 요청에서는 until 파라미터 없음
|
| 235 |
|
| 236 |
headers = {
|
| 237 |
"Authorization": f"Bearer {token}",
|
|
|
|
| 239 |
}
|
| 240 |
|
| 241 |
try:
|
| 242 |
+
while has_next:
|
| 243 |
+
# URL 구성 (페이지네이션 파라미터 포함)
|
| 244 |
+
url = f"{base_url}?limit=100"
|
| 245 |
+
if until:
|
| 246 |
+
url += f"&until={until}"
|
| 247 |
+
|
| 248 |
+
print(f"Fetching page {page}... URL: {url}") # 디버깅용
|
| 249 |
+
|
| 250 |
+
response = requests.get(url, headers=headers)
|
| 251 |
+
if response.status_code != 200:
|
| 252 |
+
print(f"Vercel API Error: {response.text}")
|
| 253 |
+
break
|
| 254 |
+
|
| 255 |
+
data = response.json()
|
| 256 |
+
current_deployments = data.get('deployments', [])
|
| 257 |
+
|
| 258 |
+
if not current_deployments: # 더 이상 데이터가 없으면 종료
|
| 259 |
+
break
|
| 260 |
+
|
| 261 |
+
all_deployments.extend(current_deployments)
|
| 262 |
+
|
| 263 |
+
# 다음 페이지를 위한 until 값 설정
|
| 264 |
+
pagination = data.get('pagination', {})
|
| 265 |
+
until = pagination.get('next')
|
| 266 |
+
has_next = bool(until) # until 값이 있으면 다음 페이지 존재
|
| 267 |
|
| 268 |
+
print(f"Page {page} fetched. Got {len(current_deployments)} deployments") # 디버깅용
|
| 269 |
+
page += 1
|
| 270 |
+
|
| 271 |
+
print(f"Total deployments fetched: {len(all_deployments)}") # 디버깅용
|
| 272 |
|
| 273 |
# 상태가 'READY'이고 'url'이 있는 배포만 필터링하고 'javis1' 제외
|
| 274 |
active_deployments = [
|
| 275 |
+
dep for dep in all_deployments
|
| 276 |
if dep.get('state') == 'READY' and
|
| 277 |
dep.get('url') and
|
| 278 |
+
'javis1' not in dep.get('name', '').lower()
|
| 279 |
]
|
| 280 |
|
| 281 |
+
print(f"Active deployments after filtering: {len(active_deployments)}") # 디버깅용
|
| 282 |
return active_deployments
|
| 283 |
+
|
| 284 |
except Exception as e:
|
| 285 |
print(f"Error fetching Vercel deployments: {str(e)}")
|
| 286 |
return []
|
| 287 |
|
| 288 |
|
| 289 |
+
def get_vercel_card(deployment, index, is_top_best=False):
|
| 290 |
+
"""Vercel 배포 카드 HTML 생성 함수"""
|
| 291 |
raw_url = deployment.get('url', '')
|
| 292 |
|
| 293 |
+
# URL 처리
|
| 294 |
if raw_url.startswith('http'):
|
| 295 |
+
url = raw_url
|
| 296 |
else:
|
| 297 |
+
url = f"https://{raw_url}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 298 |
|
| 299 |
+
name = deployment.get('name', '이름 없는 프로젝트')
|
| 300 |
created = format_timestamp(deployment.get('created'))
|
|
|
|
| 301 |
state = deployment.get('state', 'N/A')
|
| 302 |
|
| 303 |
+
# 카드 ID 생성
|
| 304 |
card_id = f"vercel-card-{url.replace('.', '-').replace('/', '-')}"
|
| 305 |
|
| 306 |
+
# Top Best 항목일 경우의 스크린샷 처리
|
| 307 |
+
screenshot_html = ""
|
| 308 |
+
if is_top_best:
|
| 309 |
+
try:
|
| 310 |
+
screenshot_base64 = take_screenshot(raw_url)
|
| 311 |
+
if screenshot_base64:
|
| 312 |
+
screenshot_html = f"""
|
| 313 |
+
<div style="width: 100%; height: 200px; overflow: hidden; border-radius: 10px; margin-bottom: 15px;">
|
| 314 |
+
<img src="data:image/png;base64,{screenshot_base64}"
|
| 315 |
+
style="width: 100%; height: 100%; object-fit: cover;"
|
| 316 |
+
alt="{name} 스크린샷"/>
|
| 317 |
+
</div>
|
| 318 |
+
"""
|
| 319 |
+
except Exception as e:
|
| 320 |
+
print(f"스크린샷 처리 오류: {str(e)}")
|
| 321 |
|
| 322 |
+
bg_color = get_pastel_color(index + (20 if not is_top_best else 0))
|
| 323 |
tech_emojis = ['⚡', '🚀', '🌟', '✨', '💫', '🔥', '🌈', '🎯', '🎨', '🔮']
|
| 324 |
random_emojis = random.sample(tech_emojis, 3)
|
| 325 |
|
| 326 |
+
# Top Best와 일반 카드의 내용을 다르게 구성
|
| 327 |
+
if is_top_best:
|
| 328 |
+
info_section = f"""
|
| 329 |
+
<div style='margin: 15px 0; color: #444; background: rgba(255,255,255,0.5);
|
| 330 |
+
padding: 15px; border-radius: 12px;'>
|
| 331 |
+
<p style='margin: 8px 0;'>
|
| 332 |
+
<strong>URL:</strong> 🔗 {url}
|
| 333 |
+
</p>
|
| 334 |
+
</div>
|
| 335 |
+
"""
|
| 336 |
+
else:
|
| 337 |
+
info_section = f"""
|
| 338 |
+
<div style='margin: 15px 0; color: #444; background: rgba(255,255,255,0.5);
|
| 339 |
+
padding: 15px; border-radius: 12px;'>
|
| 340 |
+
<p style='margin: 8px 0;'>
|
| 341 |
+
<strong>Status:</strong> ✅ {state}
|
| 342 |
+
</p>
|
| 343 |
+
<p style='margin: 8px 0;'>
|
| 344 |
+
<strong>Created:</strong> 📅 {created}
|
| 345 |
+
</p>
|
| 346 |
+
<p style='margin: 8px 0;'>
|
| 347 |
+
<strong>URL:</strong> 🔗 {url}
|
| 348 |
+
</p>
|
| 349 |
+
</div>
|
| 350 |
+
"""
|
| 351 |
|
| 352 |
return f"""
|
| 353 |
<div id="{card_id}" class="vercel-card"
|
|
|
|
| 363 |
overflow: hidden;'
|
| 364 |
onmouseover='this.style.transform="translateY(-5px) scale(1.02)"; this.style.boxShadow="0 8px 25px rgba(0,0,0,0.15)"'
|
| 365 |
onmouseout='this.style.transform="translateY(0) scale(1)"; this.style.boxShadow="0 4px 15px rgba(0,0,0,0.1)"'>
|
| 366 |
+
{screenshot_html}
|
| 367 |
<h3 style='color: #2d2d2d;
|
| 368 |
margin: 0 0 20px 0;
|
| 369 |
font-size: 1.4em;
|
|
|
|
| 371 |
align-items: center;
|
| 372 |
gap: 10px;'>
|
| 373 |
<span style='font-size: 1.3em'>{random_emojis[0]}</span>
|
| 374 |
+
<a href='{url}' target='_blank'
|
| 375 |
style='text-decoration: none; color: #2d2d2d;'>
|
| 376 |
{name}
|
| 377 |
</a>
|
| 378 |
<span style='font-size: 1.3em'>{random_emojis[1]}</span>
|
| 379 |
</h3>
|
| 380 |
+
{info_section}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 381 |
<div style='margin-top: 20px; display: flex; justify-content: space-between; align-items: center;'>
|
| 382 |
<div class="like-section" style="display: flex; align-items: center; gap: 10px;">
|
| 383 |
<button onclick="toggleLike('{card_id}')" class="like-button"
|
|
|
|
| 386 |
</button>
|
| 387 |
<span class="like-count" style="font-size: 1.2em; color: #666;">0</span>
|
| 388 |
</div>
|
| 389 |
+
<a href='{url}' target='_blank'
|
| 390 |
style='background: linear-gradient(45deg, #0084ff, #00a3ff);
|
| 391 |
color: white;
|
| 392 |
padding: 10px 20px;
|
|
|
|
| 599 |
]
|
| 600 |
|
| 601 |
|
|
|
|
| 602 |
def get_user_spaces():
|
| 603 |
# 기존 Hugging Face 스페이스 가져오기
|
| 604 |
url = f"https://huggingface.co/api/spaces?author={USERNAME}&limit=500"
|
|
|
|
| 618 |
if not should_exclude_space(space.get('id', '').split('/')[-1])
|
| 619 |
]
|
| 620 |
|
| 621 |
+
# TOP_BEST_URLS 항목 수
|
| 622 |
+
top_best_count = len(TOP_BEST_URLS)
|
| 623 |
|
| 624 |
+
# Vercel API를 통한 실제 배포 수
|
| 625 |
+
vercel_deployments = get_vercel_deployments()
|
| 626 |
+
actual_vercel_count = len(vercel_deployments) if vercel_deployments else 0
|
| 627 |
|
| 628 |
html_content = f"""
|
| 629 |
<div style='padding: 20px; background-color: #f5f5f5;'>
|
|
|
|
| 637 |
</a>
|
| 638 |
</p>
|
| 639 |
<p style='color: #666; margin: 0;'>
|
| 640 |
+
Found {actual_vercel_count} Vercel deployments and {len(user_spaces)} Hugging Face spaces<br>
|
| 641 |
+
(Plus {top_best_count} featured items in Top Best section)
|
| 642 |
</p>
|
| 643 |
</div>
|
| 644 |
|
|
|
|
| 645 |
<!-- Top Best -->
|
| 646 |
<h3 style='color: #333; margin: 20px 0;'>🏆 Top Best</h3>
|
| 647 |
<div style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;'>
|
| 648 |
+
{"".join(get_vercel_card(
|
| 649 |
+
{"url": url["url"], "created": url["created"], "name": url["name"], "state": url["state"]},
|
| 650 |
+
idx,
|
| 651 |
+
is_top_best=True
|
| 652 |
+
) for idx, url in enumerate(TOP_BEST_URLS))}
|
| 653 |
</div>
|
| 654 |
|
| 655 |
<!-- Vercel Deployments -->
|
| 656 |
+
{f'''
|
| 657 |
<h3 style='color: #333; margin: 20px 0;'>⚡ Vercel Deployments</h3>
|
| 658 |
<div id="vercel-container" style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;'>
|
| 659 |
{"".join(get_vercel_card(dep, idx) for idx, dep in enumerate(vercel_deployments))}
|
| 660 |
</div>
|
| 661 |
+
''' if vercel_deployments else ''}
|
| 662 |
|
| 663 |
<!-- Hugging Face Spaces -->
|
| 664 |
<h3 style='color: #333; margin: 20px 0;'>🤗 Hugging Face Spaces</h3>
|
|
|
|
| 720 |
</script>
|
| 721 |
"""
|
| 722 |
|
|
|
|
| 723 |
return html_content
|
| 724 |
|
| 725 |
except Exception as e:
|
|
|
|
| 731 |
<p>Please try again later.</p>
|
| 732 |
</div>
|
| 733 |
"""
|
| 734 |
+
|
| 735 |
|
| 736 |
# Creating the Gradio interface
|
| 737 |
demo = gr.Blocks()
|
| 738 |
|
| 739 |
with demo:
|
| 740 |
+
html_output = gr.HTML(value=get_user_spaces())
|
| 741 |
|
| 742 |
if __name__ == "__main__":
|
| 743 |
+
demo.launch()
|
| 744 |
+
|