aliceblue11 commited on
Commit
19d084b
·
verified ·
1 Parent(s): b66294a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -64,4 +64,12 @@ iface = gr.Interface(
64
  outputs=gr.Textbox(label="스크래핑된 블로그 내용"),
65
  title="네이버 블로그 스크래퍼 (텍스트만)",
66
  description=(
67
- "네이버 블로그 URL(표준 또는 모바일
 
 
 
 
 
 
 
 
 
64
  outputs=gr.Textbox(label="스크래핑된 블로그 내용"),
65
  title="네이버 블로그 스크래퍼 (텍스트만)",
66
  description=(
67
+ "네이버 블로그 URL(표준 또는 모바일)을 입력하면 제목과 텍스트 내용을 스크래핑합니다. "
68
+ "스크립트는 표준 URL을 자동으로 모바일 형식으로 변환하며, 헤더와 3초 지연을 설정하여 요청을 자연스럽게 만듭니다."
69
+ ),
70
+ theme="compact", # 간결한 Gradio 인터페이스 테마
71
+ )
72
+
73
+ # Gradio 애플리케이션 실행
74
+ if __name__ == "__main__":
75
+ iface.launch()