Update app-backup2.py
Browse files- app-backup2.py +964 -197
app-backup2.py
CHANGED
@@ -5,6 +5,11 @@ import os
|
|
5 |
from datetime import datetime, timedelta
|
6 |
from huggingface_hub import InferenceClient
|
7 |
|
|
|
|
|
|
|
|
|
|
|
8 |
MAX_COUNTRY_RESULTS = 100 # 국가별 최대 결과 수
|
9 |
MAX_GLOBAL_RESULTS = 1000 # 전세계 최대 결과 수
|
10 |
|
@@ -28,7 +33,7 @@ def create_article_components(max_results):
|
|
28 |
return article_components
|
29 |
|
30 |
API_KEY = os.getenv("SERPHOUSE_API_KEY")
|
31 |
-
|
32 |
|
33 |
# 국가별 언어 코드 매핑
|
34 |
COUNTRY_LANGUAGES = {
|
@@ -40,7 +45,6 @@ COUNTRY_LANGUAGES = {
|
|
40 |
"Germany": "de",
|
41 |
"France": "fr",
|
42 |
"Japan": "ja",
|
43 |
-
"South Korea": "ko",
|
44 |
"China": "zh",
|
45 |
"India": "hi",
|
46 |
"Brazil": "pt",
|
@@ -111,7 +115,6 @@ COUNTRY_LOCATIONS = {
|
|
111 |
"Germany": "Germany",
|
112 |
"France": "France",
|
113 |
"Japan": "Japan",
|
114 |
-
"South Korea": "South Korea",
|
115 |
"China": "China",
|
116 |
"India": "India",
|
117 |
"Brazil": "Brazil",
|
@@ -175,6 +178,180 @@ COUNTRY_LOCATIONS = {
|
|
175 |
|
176 |
MAJOR_COUNTRIES = list(COUNTRY_LOCATIONS.keys())
|
177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
def translate_query(query, country):
|
179 |
try:
|
180 |
# 영어 입력 확인
|
@@ -256,7 +433,7 @@ def search_serphouse(query, country, page=1, num_result=10):
|
|
256 |
"device": "desktop",
|
257 |
"serp_type": "news",
|
258 |
"page": "1",
|
259 |
-
"num": "
|
260 |
"date_range": date_range,
|
261 |
"sort_by": "date"
|
262 |
}
|
@@ -310,28 +487,678 @@ def serphouse_search(query, country):
|
|
310 |
response_data = search_serphouse(query, country)
|
311 |
return format_results_from_raw(response_data)
|
312 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
css = """
|
|
|
314 |
footer {visibility: hidden;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
"""
|
316 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css, title="NewsAI 서비스") as iface:
|
318 |
with gr.Tabs():
|
319 |
# 국가별 탭
|
320 |
with gr.Tab("국가별"):
|
321 |
-
gr.Markdown("검색어를 입력하고 원하는 국가(
|
322 |
gr.Markdown("국가 선택후 검색어에 '한글'을 입력하면 현지 언어로 번역되어 검색합니다. 예: 'Taiwan' 국가 선택후 '삼성' 입력시 '三星'으로 자동 검색")
|
323 |
|
324 |
with gr.Column():
|
325 |
with gr.Row():
|
326 |
query = gr.Textbox(label="검색어")
|
327 |
-
country = gr.Dropdown(
|
|
|
|
|
|
|
|
|
328 |
|
329 |
-
# 검색 상태 메시지
|
330 |
status_message = gr.Markdown("", visible=True)
|
331 |
-
|
332 |
-
# 번역 결과를 보여주는 컴포넌트
|
333 |
translated_query_display = gr.Markdown(visible=False)
|
334 |
-
|
335 |
search_button = gr.Button("검색", variant="primary")
|
336 |
|
337 |
progress = gr.Progress()
|
@@ -356,219 +1183,159 @@ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css, title="NewsAI 서비스") as
|
|
356 |
|
357 |
# 전세계 탭
|
358 |
with gr.Tab("전세계"):
|
359 |
-
gr.Markdown("
|
360 |
|
361 |
with gr.Column():
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
for i in range(1000):
|
372 |
-
with gr.Group(visible=False) as article_group:
|
373 |
-
title = gr.Markdown()
|
374 |
-
image = gr.Image(width=200, height=150)
|
375 |
-
snippet = gr.Markdown()
|
376 |
-
info = gr.Markdown()
|
377 |
-
|
378 |
-
global_article_components.append({
|
379 |
-
'group': article_group,
|
380 |
-
'title': title,
|
381 |
-
'image': image,
|
382 |
-
'snippet': snippet,
|
383 |
-
'info': info,
|
384 |
-
'index': i,
|
385 |
-
})
|
386 |
-
|
387 |
-
def search_and_display(query, country, articles_state, progress=gr.Progress()):
|
388 |
-
# 검색 상태 메시지 업데이트
|
389 |
-
status_msg = "검색을 진행중입니다. 잠시만 기다리세요..."
|
390 |
-
|
391 |
-
progress(0, desc="검색어 번역 중...")
|
392 |
-
|
393 |
-
# 검색어 번역
|
394 |
-
translated_query = translate_query(query, country)
|
395 |
-
translated_display = f"**원본 검색어:** {query}\n**번역된 검색어:** {translated_query}" if translated_query != query else f"**검색어:** {query}"
|
396 |
-
|
397 |
-
progress(0.2, desc="검색 시작...")
|
398 |
-
error_message, articles = serphouse_search(query, country)
|
399 |
-
progress(0.5, desc="결과 처리 중...")
|
400 |
-
|
401 |
-
outputs = []
|
402 |
-
outputs.append(gr.update(value=status_msg, visible=True)) # 상태 메시지
|
403 |
-
outputs.append(gr.update(value=translated_display, visible=True)) # 번역 결과
|
404 |
-
|
405 |
-
if error_message:
|
406 |
-
outputs.append(gr.update(value=error_message, visible=True))
|
407 |
-
for comp in article_components:
|
408 |
-
outputs.extend([
|
409 |
-
gr.update(visible=False), gr.update(), gr.update(),
|
410 |
-
gr.update(), gr.update()
|
411 |
-
])
|
412 |
-
articles_state = []
|
413 |
-
else:
|
414 |
-
outputs.append(gr.update(value="", visible=False))
|
415 |
-
total_articles = len(articles)
|
416 |
-
for idx, comp in enumerate(article_components):
|
417 |
-
progress((idx + 1) / total_articles, desc=f"결과 표시 중... {idx + 1}/{total_articles}")
|
418 |
-
if idx < len(articles):
|
419 |
-
article = articles[idx]
|
420 |
-
image_url = article['image_url']
|
421 |
-
image_update = gr.update(value=image_url, visible=True) if image_url and not image_url.startswith('data:image') else gr.update(value=None, visible=False)
|
422 |
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
gr.
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
outputs[0] = gr.update(value="", visible=False)
|
445 |
-
|
446 |
-
return outputs
|
447 |
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
displayed_count = 0
|
452 |
-
|
453 |
-
# 초기 출력 설정
|
454 |
-
outputs = []
|
455 |
-
outputs.append(gr.update(value=status_msg, visible=True))
|
456 |
-
outputs.append(gr.update(value=f"**검색어:** {query}", visible=True))
|
457 |
-
|
458 |
-
# 1000개의 결과 컴포넌트를 초기에 모두 숨김 처리
|
459 |
-
for _ in global_article_components:
|
460 |
-
outputs.extend([
|
461 |
-
gr.update(visible=False), gr.update(), gr.update(),
|
462 |
-
gr.update(), gr.update()
|
463 |
-
])
|
464 |
-
outputs.append([]) # articles_state_global
|
465 |
-
|
466 |
-
yield outputs # 초기 상태 출력
|
467 |
-
|
468 |
-
# 국가별 검색 및 실시간 결과 출력
|
469 |
-
for idx, (country, location) in enumerate(COUNTRY_LOCATIONS.items()):
|
470 |
-
progress(idx / len(COUNTRY_LOCATIONS), f"{country} 검색 중... ({idx + 1}/{len(COUNTRY_LOCATIONS)})")
|
471 |
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
url = article.get('link', '')
|
488 |
-
if url not in seen_urls:
|
489 |
-
seen_urls.add(url)
|
490 |
-
unique_results.append(article)
|
491 |
-
|
492 |
-
# 최대 1000개까지만 유지
|
493 |
-
unique_results = unique_results[:1000]
|
494 |
-
|
495 |
-
# 새로운 결과 출력
|
496 |
-
outputs = []
|
497 |
-
outputs.append(gr.update(value=f"전세계 검색 진행 중... ({idx + 1}/{len(COUNTRY_LOCATIONS)} 국가 완료)", visible=True))
|
498 |
-
outputs.append(gr.update(value=f"**검색어:** {query}\n**현재까지 발견된 뉴스:** {len(unique_results)}건", visible=True))
|
499 |
-
|
500 |
-
# 결과 컴포넌트 업데이트
|
501 |
-
for idx, comp in enumerate(global_article_components):
|
502 |
-
if idx < len(unique_results):
|
503 |
-
article = unique_results[idx]
|
504 |
-
image_url = article.get('image_url', '')
|
505 |
-
image_update = gr.update(value=image_url, visible=True) if image_url and not image_url.startswith('data:image') else gr.update(value=None, visible=False)
|
506 |
-
|
507 |
-
korean_summary = translate_to_korean(article['snippet'])
|
508 |
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
outputs.append(unique_results)
|
523 |
-
yield outputs
|
524 |
-
|
525 |
-
except Exception as e:
|
526 |
-
print(f"Error searching {country}: {str(e)}")
|
527 |
-
continue
|
528 |
-
|
529 |
-
# 최종 상태 업데이트
|
530 |
-
final_status = f"검색 완료! 총 {len(unique_results)}개의 뉴스가 발견되었습니다."
|
531 |
-
outputs[0] = gr.update(value=final_status, visible=True)
|
532 |
-
yield outputs
|
533 |
-
|
534 |
-
search_outputs = [
|
535 |
-
status_message,
|
536 |
-
translated_query_display,
|
537 |
-
gr.Markdown(visible=False)
|
538 |
-
]
|
539 |
-
|
540 |
for comp in article_components:
|
541 |
search_outputs.extend([
|
542 |
comp['group'], comp['title'], comp['image'],
|
543 |
comp['snippet'], comp['info']
|
544 |
])
|
545 |
search_outputs.append(articles_state)
|
546 |
-
|
547 |
search_button.click(
|
548 |
-
search_and_display,
|
549 |
inputs=[query, country, articles_state],
|
550 |
outputs=search_outputs,
|
551 |
show_progress=True
|
552 |
)
|
553 |
|
554 |
-
# 전세계
|
555 |
-
global_search_outputs = [
|
556 |
-
status_message_global,
|
557 |
-
translated_query_display_global,
|
558 |
-
]
|
559 |
-
|
560 |
for comp in global_article_components:
|
561 |
global_search_outputs.extend([
|
562 |
comp['group'], comp['title'], comp['image'],
|
563 |
comp['snippet'], comp['info']
|
564 |
])
|
565 |
global_search_outputs.append(articles_state_global)
|
566 |
-
|
567 |
search_button_global.click(
|
568 |
-
search_global,
|
569 |
-
inputs=[query_global, articles_state_global],
|
570 |
outputs=global_search_outputs,
|
571 |
show_progress=True
|
572 |
)
|
573 |
|
574 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
from datetime import datetime, timedelta
|
6 |
from huggingface_hub import InferenceClient
|
7 |
|
8 |
+
from bs4 import BeautifulSoup
|
9 |
+
import concurrent.futures
|
10 |
+
import time
|
11 |
+
import re
|
12 |
+
|
13 |
MAX_COUNTRY_RESULTS = 100 # 국가별 최대 결과 수
|
14 |
MAX_GLOBAL_RESULTS = 1000 # 전세계 최대 결과 수
|
15 |
|
|
|
33 |
return article_components
|
34 |
|
35 |
API_KEY = os.getenv("SERPHOUSE_API_KEY")
|
36 |
+
hf_client = InferenceClient("CohereForAI/c4ai-command-r-plus-08-2024", token=os.getenv("HF_TOKEN"))
|
37 |
|
38 |
# 국가별 언어 코드 매핑
|
39 |
COUNTRY_LANGUAGES = {
|
|
|
45 |
"Germany": "de",
|
46 |
"France": "fr",
|
47 |
"Japan": "ja",
|
|
|
48 |
"China": "zh",
|
49 |
"India": "hi",
|
50 |
"Brazil": "pt",
|
|
|
115 |
"Germany": "Germany",
|
116 |
"France": "France",
|
117 |
"Japan": "Japan",
|
|
|
118 |
"China": "China",
|
119 |
"India": "India",
|
120 |
"Brazil": "Brazil",
|
|
|
178 |
|
179 |
MAJOR_COUNTRIES = list(COUNTRY_LOCATIONS.keys())
|
180 |
|
181 |
+
# 동아시아 지역
|
182 |
+
COUNTRY_LANGUAGES_EAST_ASIA = {
|
183 |
+
"Taiwan": "zh-TW",
|
184 |
+
"Japan": "ja",
|
185 |
+
"China": "zh",
|
186 |
+
"Hong Kong": "zh-HK"
|
187 |
+
}
|
188 |
+
|
189 |
+
COUNTRY_LOCATIONS_EAST_ASIA = {
|
190 |
+
"Taiwan": "Taiwan",
|
191 |
+
"Japan": "Japan",
|
192 |
+
"China": "China",
|
193 |
+
"Hong Kong": "Hong Kong"
|
194 |
+
}
|
195 |
+
|
196 |
+
# 동남아시아/오세아니아 지역
|
197 |
+
COUNTRY_LANGUAGES_SOUTHEAST_ASIA_OCEANIA = {
|
198 |
+
"Indonesia": "id",
|
199 |
+
"Malaysia": "ms",
|
200 |
+
"Philippines": "tl",
|
201 |
+
"Thailand": "th",
|
202 |
+
"Vietnam": "vi",
|
203 |
+
"Singapore": "en",
|
204 |
+
"Papua New Guinea": "en",
|
205 |
+
"Australia": "en",
|
206 |
+
"New Zealand": "en"
|
207 |
+
}
|
208 |
+
|
209 |
+
COUNTRY_LOCATIONS_SOUTHEAST_ASIA_OCEANIA = {
|
210 |
+
"Indonesia": "Indonesia",
|
211 |
+
"Malaysia": "Malaysia",
|
212 |
+
"Philippines": "Philippines",
|
213 |
+
"Thailand": "Thailand",
|
214 |
+
"Vietnam": "Vietnam",
|
215 |
+
"Singapore": "Singapore",
|
216 |
+
"Papua New Guinea": "Papua New Guinea",
|
217 |
+
"Australia": "Australia",
|
218 |
+
"New Zealand": "New Zealand"
|
219 |
+
}
|
220 |
+
|
221 |
+
# 동유럽 지역
|
222 |
+
COUNTRY_LANGUAGES_EAST_EUROPE = {
|
223 |
+
"Poland": "pl",
|
224 |
+
"Czech Republic": "cs",
|
225 |
+
"Greece": "el",
|
226 |
+
"Hungary": "hu",
|
227 |
+
"Romania": "ro",
|
228 |
+
"Ukraine": "uk",
|
229 |
+
"Croatia": "hr",
|
230 |
+
"Slovakia": "sk",
|
231 |
+
"Bulgaria": "bg",
|
232 |
+
"Serbia": "sr",
|
233 |
+
"Estonia": "et",
|
234 |
+
"Latvia": "lv",
|
235 |
+
"Lithuania": "lt",
|
236 |
+
"Slovenia": "sl",
|
237 |
+
"Malta": "mt",
|
238 |
+
"Cyprus": "el",
|
239 |
+
"Iceland": "is",
|
240 |
+
"Russia": "ru"
|
241 |
+
}
|
242 |
+
|
243 |
+
COUNTRY_LOCATIONS_EAST_EUROPE = {
|
244 |
+
"Poland": "Poland",
|
245 |
+
"Czech Republic": "Czech Republic",
|
246 |
+
"Greece": "Greece",
|
247 |
+
"Hungary": "Hungary",
|
248 |
+
"Romania": "Romania",
|
249 |
+
"Ukraine": "Ukraine",
|
250 |
+
"Croatia": "Croatia",
|
251 |
+
"Slovakia": "Slovakia",
|
252 |
+
"Bulgaria": "Bulgaria",
|
253 |
+
"Serbia": "Serbia",
|
254 |
+
"Estonia": "Estonia",
|
255 |
+
"Latvia": "Latvia",
|
256 |
+
"Lithuania": "Lithuania",
|
257 |
+
"Slovenia": "Slovenia",
|
258 |
+
"Malta": "Malta",
|
259 |
+
"Cyprus": "Cyprus",
|
260 |
+
"Iceland": "Iceland",
|
261 |
+
"Russia": "Russia"
|
262 |
+
}
|
263 |
+
|
264 |
+
# 서유럽 지역
|
265 |
+
COUNTRY_LANGUAGES_WEST_EUROPE = {
|
266 |
+
"Germany": "de",
|
267 |
+
"France": "fr",
|
268 |
+
"Italy": "it",
|
269 |
+
"Spain": "es",
|
270 |
+
"Netherlands": "nl",
|
271 |
+
"Belgium": "nl",
|
272 |
+
"Ireland": "en",
|
273 |
+
"Sweden": "sv",
|
274 |
+
"Switzerland": "de",
|
275 |
+
"Austria": "de",
|
276 |
+
"Portugal": "pt",
|
277 |
+
"Luxembourg": "fr",
|
278 |
+
"United Kingdom": "en"
|
279 |
+
}
|
280 |
+
|
281 |
+
COUNTRY_LOCATIONS_WEST_EUROPE = {
|
282 |
+
"Germany": "Germany",
|
283 |
+
"France": "France",
|
284 |
+
"Italy": "Italy",
|
285 |
+
"Spain": "Spain",
|
286 |
+
"Netherlands": "Netherlands",
|
287 |
+
"Belgium": "Belgium",
|
288 |
+
"Ireland": "Ireland",
|
289 |
+
"Sweden": "Sweden",
|
290 |
+
"Switzerland": "Switzerland",
|
291 |
+
"Austria": "Austria",
|
292 |
+
"Portugal": "Portugal",
|
293 |
+
"Luxembourg": "Luxembourg",
|
294 |
+
"United Kingdom": "United Kingdom"
|
295 |
+
}
|
296 |
+
|
297 |
+
# 중동/아프리카 지역
|
298 |
+
COUNTRY_LANGUAGES_ARAB_AFRICA = {
|
299 |
+
"South Africa": "en",
|
300 |
+
"Nigeria": "en",
|
301 |
+
"Kenya": "sw",
|
302 |
+
"Egypt": "ar",
|
303 |
+
"Morocco": "ar",
|
304 |
+
"Saudi Arabia": "ar",
|
305 |
+
"United Arab Emirates": "ar",
|
306 |
+
"Israel": "he"
|
307 |
+
}
|
308 |
+
|
309 |
+
COUNTRY_LOCATIONS_ARAB_AFRICA = {
|
310 |
+
"South Africa": "South Africa",
|
311 |
+
"Nigeria": "Nigeria",
|
312 |
+
"Kenya": "Kenya",
|
313 |
+
"Egypt": "Egypt",
|
314 |
+
"Morocco": "Morocco",
|
315 |
+
"Saudi Arabia": "Saudi Arabia",
|
316 |
+
"United Arab Emirates": "United Arab Emirates",
|
317 |
+
"Israel": "Israel"
|
318 |
+
}
|
319 |
+
|
320 |
+
# 아메리카 지역
|
321 |
+
COUNTRY_LANGUAGES_AMERICA = {
|
322 |
+
"United States": "en",
|
323 |
+
"Canada": "en",
|
324 |
+
"Mexico": "es",
|
325 |
+
"Brazil": "pt",
|
326 |
+
"Argentina": "es",
|
327 |
+
"Chile": "es",
|
328 |
+
"Colombia": "es",
|
329 |
+
"Peru": "es",
|
330 |
+
"Venezuela": "es"
|
331 |
+
}
|
332 |
+
|
333 |
+
COUNTRY_LOCATIONS_AMERICA = {
|
334 |
+
"United States": "United States",
|
335 |
+
"Canada": "Canada",
|
336 |
+
"Mexico": "Mexico",
|
337 |
+
"Brazil": "Brazil",
|
338 |
+
"Argentina": "Argentina",
|
339 |
+
"Chile": "Chile",
|
340 |
+
"Colombia": "Colombia",
|
341 |
+
"Peru": "Peru",
|
342 |
+
"Venezuela": "Venezuela"
|
343 |
+
}
|
344 |
+
|
345 |
+
# 지역 선택 리스트
|
346 |
+
REGIONS = [
|
347 |
+
"동아시아",
|
348 |
+
"���남아시아/오세아니아",
|
349 |
+
"동유럽",
|
350 |
+
"서유럽",
|
351 |
+
"중동/아프리카",
|
352 |
+
"아메리카"
|
353 |
+
]
|
354 |
+
|
355 |
def translate_query(query, country):
|
356 |
try:
|
357 |
# 영어 입력 확인
|
|
|
433 |
"device": "desktop",
|
434 |
"serp_type": "news",
|
435 |
"page": "1",
|
436 |
+
"num": "100",
|
437 |
"date_range": date_range,
|
438 |
"sort_by": "date"
|
439 |
}
|
|
|
487 |
response_data = search_serphouse(query, country)
|
488 |
return format_results_from_raw(response_data)
|
489 |
|
490 |
+
|
491 |
+
|
492 |
+
|
493 |
+
|
494 |
+
# Hacker News API 관련 함수들 먼저 추가
|
495 |
+
def get_hn_item(item_id):
|
496 |
+
"""개별 아이템 정보 가져오기"""
|
497 |
+
try:
|
498 |
+
response = requests.get(f"https://hacker-news.firebaseio.com/v0/item/{item_id}.json")
|
499 |
+
return response.json()
|
500 |
+
except:
|
501 |
+
return None
|
502 |
+
|
503 |
+
def get_recent_stories():
|
504 |
+
"""최신 스토리 가져오기"""
|
505 |
+
try:
|
506 |
+
response = requests.get("https://hacker-news.firebaseio.com/v0/newstories.json")
|
507 |
+
story_ids = response.json()
|
508 |
+
|
509 |
+
recent_stories = []
|
510 |
+
current_time = datetime.now().timestamp()
|
511 |
+
day_ago = current_time - (24 * 60 * 60)
|
512 |
+
|
513 |
+
for story_id in story_ids:
|
514 |
+
story = get_hn_item(story_id)
|
515 |
+
if story and 'time' in story and story['time'] > day_ago:
|
516 |
+
recent_stories.append(story)
|
517 |
+
|
518 |
+
if len(recent_stories) >= 100:
|
519 |
+
break
|
520 |
+
|
521 |
+
return recent_stories
|
522 |
+
except Exception as e:
|
523 |
+
print(f"Error fetching HN stories: {str(e)}")
|
524 |
+
return []
|
525 |
+
|
526 |
+
def format_hn_time(timestamp):
|
527 |
+
"""Unix timestamp를 읽기 쉬운 형식으로 변환"""
|
528 |
+
try:
|
529 |
+
dt = datetime.fromtimestamp(timestamp)
|
530 |
+
return dt.strftime("%Y-%m-%d %H:%M:%S")
|
531 |
+
except:
|
532 |
+
return "Unknown time"
|
533 |
+
|
534 |
+
|
535 |
+
def clean_text(text):
|
536 |
+
"""HTML 태그 제거 및 텍스트 정리"""
|
537 |
+
text = re.sub(r'\s+', ' ', text)
|
538 |
+
text = re.sub(r'<[^>]+>', '', text)
|
539 |
+
return text.strip()
|
540 |
+
|
541 |
+
def get_article_content(url):
|
542 |
+
"""URL에서 기사 내용 스크래핑"""
|
543 |
+
if not url:
|
544 |
+
return None
|
545 |
+
|
546 |
+
# 스킵할 도메인 목록
|
547 |
+
skip_domains = ['github.com', 'twitter.com', 'linkedin.com', 'facebook.com']
|
548 |
+
if any(domain in url.lower() for domain in skip_domains):
|
549 |
+
return None
|
550 |
+
|
551 |
+
try:
|
552 |
+
headers = {
|
553 |
+
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',
|
554 |
+
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
|
555 |
+
'Accept-Language': 'en-US,en;q=0.5',
|
556 |
+
'Connection': 'keep-alive',
|
557 |
+
}
|
558 |
+
|
559 |
+
# 타임아웃 증가 및 재시도 설정
|
560 |
+
session = requests.Session()
|
561 |
+
retries = requests.adapters.Retry(total=3, backoff_factor=1)
|
562 |
+
session.mount('https://', requests.adapters.HTTPAdapter(max_retries=retries))
|
563 |
+
|
564 |
+
response = session.get(url, headers=headers, timeout=15)
|
565 |
+
response.raise_for_status()
|
566 |
+
|
567 |
+
soup = BeautifulSoup(response.text, 'html.parser')
|
568 |
+
|
569 |
+
# 불필요한 요소 제거
|
570 |
+
for tag in soup(['script', 'style', 'nav', 'footer', 'header', 'aside', 'iframe']):
|
571 |
+
tag.decompose()
|
572 |
+
|
573 |
+
# 본문 내용 추출
|
574 |
+
article_text = ""
|
575 |
+
|
576 |
+
# article 태그 확인
|
577 |
+
article = soup.find('article')
|
578 |
+
if article:
|
579 |
+
paragraphs = article.find_all('p')
|
580 |
+
else:
|
581 |
+
# main 태그 확인
|
582 |
+
main = soup.find('main')
|
583 |
+
if main:
|
584 |
+
paragraphs = main.find_all('p')
|
585 |
+
else:
|
586 |
+
# body에서 직접 검색
|
587 |
+
paragraphs = soup.find_all('p')
|
588 |
+
|
589 |
+
text = ' '.join(p.get_text().strip() for p in paragraphs if p.get_text().strip())
|
590 |
+
text = clean_text(text)
|
591 |
+
|
592 |
+
if not text:
|
593 |
+
return None
|
594 |
+
|
595 |
+
return text[:4000] # 텍스트 길이 제한
|
596 |
+
|
597 |
+
except Exception as e:
|
598 |
+
print(f"Scraping error for {url}: {str(e)}")
|
599 |
+
return None
|
600 |
+
|
601 |
+
def generate_summary(text):
|
602 |
+
"""CohereForAI 모델을 사용한 요약 생성"""
|
603 |
+
if not text:
|
604 |
+
return None
|
605 |
+
|
606 |
+
prompt = """반드시 한글(한국어)로 작성하라. Please analyze and summarize the following text in 2-3 sentences.
|
607 |
+
Focus on the main points and key information:
|
608 |
+
|
609 |
+
Text: {text}
|
610 |
+
|
611 |
+
Summary:"""
|
612 |
+
|
613 |
+
try:
|
614 |
+
response = hf_client.text_generation(
|
615 |
+
prompt.format(text=text),
|
616 |
+
max_new_tokens=500,
|
617 |
+
temperature=0.5,
|
618 |
+
repetition_penalty=1.2
|
619 |
+
)
|
620 |
+
return response
|
621 |
+
except Exception as e:
|
622 |
+
print(f"Summary generation error: {str(e)}")
|
623 |
+
return None
|
624 |
+
|
625 |
+
def process_hn_story(story, progress=None):
|
626 |
+
"""개별 스토리 처리 �� 요약"""
|
627 |
+
try:
|
628 |
+
url = story.get('url')
|
629 |
+
if not url:
|
630 |
+
return None # 스킵할 스토리
|
631 |
+
|
632 |
+
content = get_article_content(url)
|
633 |
+
if not content:
|
634 |
+
return None # 스크래핑 실패한 스토리 스킵
|
635 |
+
|
636 |
+
summary_en = generate_summary(content)
|
637 |
+
if not summary_en:
|
638 |
+
return None # 요약 실패한 스토리 스킵
|
639 |
+
|
640 |
+
summary_ko = translate_to_korean(summary_en)
|
641 |
+
if not summary_ko:
|
642 |
+
return None # 번역 실패한 스토리 스킵
|
643 |
+
|
644 |
+
return {
|
645 |
+
'story': story,
|
646 |
+
'summary': summary_ko
|
647 |
+
}
|
648 |
+
|
649 |
+
except Exception as e:
|
650 |
+
print(f"Story processing error: {str(e)}")
|
651 |
+
return None # 에러 발생한 스토리 스킵
|
652 |
+
|
653 |
+
def refresh_hn_stories():
|
654 |
+
"""Hacker News 스토리 새로고침 (실시간 출력 버전)"""
|
655 |
+
status_msg = "Hacker News 포스트를 가져오는 중..."
|
656 |
+
outputs = [gr.update(value=status_msg, visible=True)]
|
657 |
+
|
658 |
+
# 컴포넌트 초기화
|
659 |
+
for comp in hn_article_components:
|
660 |
+
outputs.extend([
|
661 |
+
gr.update(visible=False),
|
662 |
+
gr.update(),
|
663 |
+
gr.update(),
|
664 |
+
gr.update(visible=False), # report_button
|
665 |
+
gr.update(visible=False), # report_content
|
666 |
+
gr.update(visible=False) # show_report
|
667 |
+
])
|
668 |
+
|
669 |
+
yield outputs
|
670 |
+
|
671 |
+
# 최신 스토리 가져오기
|
672 |
+
stories = get_recent_stories()
|
673 |
+
processed_count = 0
|
674 |
+
valid_stories = [] # 성공적으로 처리된 스토리 저장
|
675 |
+
|
676 |
+
with concurrent.futures.ThreadPoolExecutor(max_workers=10) as executor:
|
677 |
+
future_to_story = {executor.submit(process_hn_story, story): story
|
678 |
+
for story in stories[:100]}
|
679 |
+
|
680 |
+
for future in concurrent.futures.as_completed(future_to_story):
|
681 |
+
processed_count += 1
|
682 |
+
result = future.result()
|
683 |
+
|
684 |
+
if result: # 성공적으로 처리된 스토리만 추가
|
685 |
+
valid_stories.append((result['story'], result['summary']))
|
686 |
+
|
687 |
+
# 현재까지의 결과 출력
|
688 |
+
outputs = [gr.update(value=f"처리 중... ({len(valid_stories)}/{processed_count} 성공)", visible=True)]
|
689 |
+
|
690 |
+
# 모든 컴포넌트 업데이트
|
691 |
+
for idx, comp in enumerate(hn_article_components):
|
692 |
+
if idx < len(valid_stories):
|
693 |
+
story, summary = valid_stories[idx]
|
694 |
+
outputs.extend([
|
695 |
+
gr.update(visible=True),
|
696 |
+
gr.update(value=f"### [{story.get('title', 'Untitled')}]({story.get('url', '#')})"),
|
697 |
+
gr.update(value=f"""
|
698 |
+
**작성자:** {story.get('by', 'unknown')} |
|
699 |
+
**시간:** {format_hn_time(story.get('time', 0))} |
|
700 |
+
**점수:** {story.get('score', 0)} |
|
701 |
+
**댓글:** {len(story.get('kids', []))}개\n
|
702 |
+
**AI 요약:** {summary}
|
703 |
+
"""),
|
704 |
+
gr.update(visible=True), # report_button
|
705 |
+
gr.update(visible=False), # report_content
|
706 |
+
gr.update(visible=False) # show_report
|
707 |
+
])
|
708 |
+
else:
|
709 |
+
outputs.extend([
|
710 |
+
gr.update(visible=False),
|
711 |
+
gr.update(),
|
712 |
+
gr.update(),
|
713 |
+
gr.update(visible=False),
|
714 |
+
gr.update(visible=False),
|
715 |
+
gr.update(visible=False)
|
716 |
+
])
|
717 |
+
|
718 |
+
yield outputs
|
719 |
+
|
720 |
+
# 최종 상태 업데이트
|
721 |
+
final_outputs = [gr.update(value=f"총 {len(valid_stories)}개의 포스트가 성공적으로 처리되었습니다. (전체 시도: {processed_count})", visible=True)]
|
722 |
+
|
723 |
+
for idx, comp in enumerate(hn_article_components):
|
724 |
+
if idx < len(valid_stories):
|
725 |
+
story, summary = valid_stories[idx]
|
726 |
+
final_outputs.extend([
|
727 |
+
gr.update(visible=True),
|
728 |
+
gr.update(value=f"### [{story.get('title', 'Untitled')}]({story.get('url', '#')})"),
|
729 |
+
gr.update(value=f"""
|
730 |
+
**작성자:** {story.get('by', 'unknown')} |
|
731 |
+
**시간:** {format_hn_time(story.get('time', 0))} |
|
732 |
+
**점수:** {story.get('score', 0)} |
|
733 |
+
**댓글:** {len(story.get('kids', []))}개\n
|
734 |
+
**AI 요약:** {summary}
|
735 |
+
"""),
|
736 |
+
gr.update(visible=True), # report_button
|
737 |
+
gr.update(visible=False), # report_content
|
738 |
+
gr.update(visible=False) # show_report
|
739 |
+
])
|
740 |
+
else:
|
741 |
+
final_outputs.extend([
|
742 |
+
gr.update(visible=False),
|
743 |
+
gr.update(),
|
744 |
+
gr.update(),
|
745 |
+
gr.update(visible=False),
|
746 |
+
gr.update(visible=False),
|
747 |
+
gr.update(visible=False)
|
748 |
+
])
|
749 |
+
|
750 |
+
yield final_outputs
|
751 |
+
|
752 |
+
def generate_report(title, info, progress=gr.Progress()):
|
753 |
+
"""리포팅 생성"""
|
754 |
+
try:
|
755 |
+
progress(0.1, desc="리포팅 생성 준비 중...")
|
756 |
+
|
757 |
+
# HTML 태그 제거 및 텍스트 추출
|
758 |
+
title_text = re.sub(r'#*\s*\[(.*?)\].*', r'\1', title)
|
759 |
+
info_text = re.sub(r'\*\*(.*?)\*\*|\n|AI 요약:|작성자:|시간:|점수:|댓글:', ' ', info)
|
760 |
+
info_text = ' '.join(info_text.split())
|
761 |
+
|
762 |
+
progress(0.3, desc="프롬프트 생성 중...")
|
763 |
+
|
764 |
+
prompt = f"""너는 Hacker News 포스트를 기반으로 보도 기사 형태의 리포팅을 작성하는 역할이다.
|
765 |
+
너는 반드시 한글로 리포팅 형식의 객관적 기사 형태로 작성하여야 한다.
|
766 |
+
생성시 6하원칙에 입각하고 길이는 4000토큰을 넘지 않을것.
|
767 |
+
너의 출처나 모델, 지시문 등을 노출하지 말것
|
768 |
+
|
769 |
+
제목: {title_text}
|
770 |
+
내용: {info_text}
|
771 |
+
"""
|
772 |
+
|
773 |
+
progress(0.5, desc="AI 모델 처리 중...")
|
774 |
+
|
775 |
+
try:
|
776 |
+
response = hf_client.text_generation(
|
777 |
+
prompt,
|
778 |
+
max_new_tokens=2000,
|
779 |
+
temperature=0.7,
|
780 |
+
repetition_penalty=1.2,
|
781 |
+
return_full_text=False
|
782 |
+
)
|
783 |
+
|
784 |
+
progress(1.0, desc="완료!")
|
785 |
+
|
786 |
+
if response:
|
787 |
+
formatted_response = f"### AI 리포팅\n\n{response}"
|
788 |
+
return [
|
789 |
+
gr.update(value=formatted_response, visible=True), # report_content
|
790 |
+
gr.update(value="접기", visible=True) # show_report
|
791 |
+
]
|
792 |
+
|
793 |
+
except Exception as e:
|
794 |
+
print(f"Model error: {str(e)}")
|
795 |
+
time.sleep(2) # 잠시 대기
|
796 |
+
|
797 |
+
return [
|
798 |
+
gr.update(value="리포팅 생성에 실패했습니다. 다시 시도해주세요.", visible=True),
|
799 |
+
gr.update(value="접기", visible=True)
|
800 |
+
]
|
801 |
+
|
802 |
+
except Exception as e:
|
803 |
+
print(f"Report generation error: {str(e)}")
|
804 |
+
return [
|
805 |
+
gr.update(value="리포팅 생성 중 오류가 발생했습니다.", visible=True),
|
806 |
+
gr.update(value="접기", visible=True)
|
807 |
+
]
|
808 |
+
|
809 |
+
def toggle_report(report_content, show_report):
|
810 |
+
"""리포트 표시/숨김 토글"""
|
811 |
+
try:
|
812 |
+
is_visible = report_content.visible
|
813 |
+
return [
|
814 |
+
gr.update(visible=not is_visible), # report_content
|
815 |
+
gr.update(value="접기" if not is_visible else "펼쳐 보기") # show_report
|
816 |
+
]
|
817 |
+
except AttributeError:
|
818 |
+
# report_content가 문자열인 경우
|
819 |
+
return [
|
820 |
+
gr.update(visible=True), # report_content
|
821 |
+
gr.update(value="접기") # show_report
|
822 |
+
]
|
823 |
+
|
824 |
css = """
|
825 |
+
/* 전역 스타일 */
|
826 |
footer {visibility: hidden;}
|
827 |
+
|
828 |
+
/* 레이아웃 컨테이너 */
|
829 |
+
#status_area {
|
830 |
+
background: rgba(255, 255, 255, 0.9);
|
831 |
+
padding: 15px;
|
832 |
+
border-bottom: 1px solid #ddd;
|
833 |
+
margin-bottom: 20px;
|
834 |
+
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
835 |
+
}
|
836 |
+
|
837 |
+
#results_area {
|
838 |
+
padding: 10px;
|
839 |
+
margin-top: 10px;
|
840 |
+
}
|
841 |
+
|
842 |
+
/* 탭 스타일 */
|
843 |
+
.tabs {
|
844 |
+
border-bottom: 2px solid #ddd !important;
|
845 |
+
margin-bottom: 20px !important;
|
846 |
+
}
|
847 |
+
|
848 |
+
.tab-nav {
|
849 |
+
border-bottom: none !important;
|
850 |
+
margin-bottom: 0 !important;
|
851 |
+
}
|
852 |
+
|
853 |
+
.tab-nav button {
|
854 |
+
font-weight: bold !important;
|
855 |
+
padding: 10px 20px !important;
|
856 |
+
}
|
857 |
+
|
858 |
+
.tab-nav button.selected {
|
859 |
+
border-bottom: 2px solid #1f77b4 !important;
|
860 |
+
color: #1f77b4 !important;
|
861 |
+
}
|
862 |
+
|
863 |
+
/* 상태 메시지 */
|
864 |
+
#status_area .markdown-text {
|
865 |
+
font-size: 1.1em;
|
866 |
+
color: #2c3e50;
|
867 |
+
padding: 10px 0;
|
868 |
+
}
|
869 |
+
|
870 |
+
/* 기본 컨테이너 */
|
871 |
+
.group {
|
872 |
+
border: 1px solid #eee;
|
873 |
+
padding: 15px;
|
874 |
+
margin-bottom: 15px;
|
875 |
+
border-radius: 5px;
|
876 |
+
background: white;
|
877 |
+
}
|
878 |
+
|
879 |
+
/* 버튼 스타일 */
|
880 |
+
.primary-btn {
|
881 |
+
background: #1f77b4 !important;
|
882 |
+
border: none !important;
|
883 |
+
}
|
884 |
+
|
885 |
+
/* 입력 필드 */
|
886 |
+
.textbox {
|
887 |
+
border: 1px solid #ddd !important;
|
888 |
+
border-radius: 4px !important;
|
889 |
+
}
|
890 |
+
|
891 |
+
/* Hacker News 아티클 스타일 */
|
892 |
+
.hn-article-group {
|
893 |
+
height: auto !important;
|
894 |
+
min-height: 250px;
|
895 |
+
margin-bottom: 20px;
|
896 |
+
padding: 15px;
|
897 |
+
border: 1px solid #eee;
|
898 |
+
border-radius: 5px;
|
899 |
+
background: white;
|
900 |
+
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
|
901 |
+
}
|
902 |
+
|
903 |
+
/* 리포트 섹션 스타일 */
|
904 |
+
.report-section {
|
905 |
+
margin-top: 15px;
|
906 |
+
padding: 15px;
|
907 |
+
border-top: 1px solid #eee;
|
908 |
+
background: #f9f9f9;
|
909 |
+
border-radius: 4px;
|
910 |
+
}
|
911 |
+
|
912 |
+
.report-content {
|
913 |
+
margin-top: 15px;
|
914 |
+
padding: 15px;
|
915 |
+
border-top: 1px solid #eee;
|
916 |
+
background: #f9f9f9;
|
917 |
+
border-radius: 4px;
|
918 |
+
font-size: 0.95em;
|
919 |
+
line-height: 1.6;
|
920 |
+
}
|
921 |
+
|
922 |
+
/* 프로그레스 바 */
|
923 |
+
.progress {
|
924 |
+
position: fixed;
|
925 |
+
top: 0;
|
926 |
+
left: 0;
|
927 |
+
width: 100%;
|
928 |
+
height: 4px;
|
929 |
+
background: #f0f0f0;
|
930 |
+
z-index: 1000;
|
931 |
+
}
|
932 |
+
|
933 |
+
.progress-bar {
|
934 |
+
height: 100%;
|
935 |
+
background: #1f77b4;
|
936 |
+
transition: width 0.3s ease;
|
937 |
+
position: fixed;
|
938 |
+
top: 0;
|
939 |
+
left: 0;
|
940 |
+
width: 100%;
|
941 |
+
z-index: 1000;
|
942 |
+
}
|
943 |
+
|
944 |
+
/* 리포트 콘텐츠 토글 */
|
945 |
+
.hn-article-group .report-content {
|
946 |
+
display: none;
|
947 |
+
margin-top: 15px;
|
948 |
+
padding: 15px;
|
949 |
+
border-top: 1px solid #eee;
|
950 |
+
background: #f9f9f9;
|
951 |
+
transition: all 0.3s ease;
|
952 |
+
}
|
953 |
+
|
954 |
+
.hn-article-group .report-content.visible {
|
955 |
+
display: block;
|
956 |
+
}
|
957 |
+
|
958 |
+
/* 반응형 디자인 */
|
959 |
+
@media (max-width: 768px) {
|
960 |
+
.hn-article-group {
|
961 |
+
padding: 10px;
|
962 |
+
margin-bottom: 15px;
|
963 |
+
}
|
964 |
+
|
965 |
+
.report-content {
|
966 |
+
padding: 10px;
|
967 |
+
}
|
968 |
+
}
|
969 |
"""
|
970 |
|
971 |
+
|
972 |
+
|
973 |
+
|
974 |
+
|
975 |
+
# 기존 함수들
|
976 |
+
def search_and_display(query, country, articles_state, progress=gr.Progress()):
|
977 |
+
status_msg = "검색을 진행중입니다. 잠시만 기다리세요..."
|
978 |
+
|
979 |
+
progress(0, desc="검색어 번역 중...")
|
980 |
+
translated_query = translate_query(query, country)
|
981 |
+
translated_display = f"**원본 검색어:** {query}\n**번역된 검색어:** {translated_query}" if translated_query != query else f"**검색어:** {query}"
|
982 |
+
|
983 |
+
progress(0.2, desc="검색 시작...")
|
984 |
+
error_message, articles = serphouse_search(query, country)
|
985 |
+
progress(0.5, desc="결과 처리 중...")
|
986 |
+
|
987 |
+
outputs = []
|
988 |
+
outputs.append(gr.update(value=status_msg, visible=True))
|
989 |
+
outputs.append(gr.update(value=translated_display, visible=True))
|
990 |
+
|
991 |
+
if error_message:
|
992 |
+
outputs.append(gr.update(value=error_message, visible=True))
|
993 |
+
for comp in article_components:
|
994 |
+
outputs.extend([
|
995 |
+
gr.update(visible=False), gr.update(), gr.update(),
|
996 |
+
gr.update(), gr.update()
|
997 |
+
])
|
998 |
+
articles_state = []
|
999 |
+
else:
|
1000 |
+
outputs.append(gr.update(value="", visible=False))
|
1001 |
+
total_articles = len(articles)
|
1002 |
+
for idx, comp in enumerate(article_components):
|
1003 |
+
progress((idx + 1) / total_articles, desc=f"결과 표시 중... {idx + 1}/{total_articles}")
|
1004 |
+
if idx < len(articles):
|
1005 |
+
article = articles[idx]
|
1006 |
+
image_url = article['image_url']
|
1007 |
+
image_update = gr.update(value=image_url, visible=True) if image_url and not image_url.startswith('data:image') else gr.update(value=None, visible=False)
|
1008 |
+
|
1009 |
+
korean_summary = translate_to_korean(article['snippet'])
|
1010 |
+
|
1011 |
+
outputs.extend([
|
1012 |
+
gr.update(visible=True),
|
1013 |
+
gr.update(value=f"### [{article['title']}]({article['link']})"),
|
1014 |
+
image_update,
|
1015 |
+
gr.update(value=f"**요약:** {article['snippet']}\n\n**한글 요약:** {korean_summary}"),
|
1016 |
+
gr.update(value=f"**출처:** {article['channel']} | **시간:** {article['time']}")
|
1017 |
+
])
|
1018 |
+
else:
|
1019 |
+
outputs.extend([
|
1020 |
+
gr.update(visible=False), gr.update(), gr.update(),
|
1021 |
+
gr.update(), gr.update()
|
1022 |
+
])
|
1023 |
+
articles_state = articles
|
1024 |
+
|
1025 |
+
progress(1.0, desc="완료!")
|
1026 |
+
outputs.append(articles_state)
|
1027 |
+
outputs[0] = gr.update(value="", visible=False)
|
1028 |
+
|
1029 |
+
return outputs
|
1030 |
+
|
1031 |
+
|
1032 |
+
def get_region_countries(region):
|
1033 |
+
"""선택된 지역의 국가 및 언어 정보 반환"""
|
1034 |
+
if region == "동아시아":
|
1035 |
+
return COUNTRY_LOCATIONS_EAST_ASIA, COUNTRY_LANGUAGES_EAST_ASIA
|
1036 |
+
elif region == "동남아시아/오세아니아":
|
1037 |
+
return COUNTRY_LOCATIONS_SOUTHEAST_ASIA_OCEANIA, COUNTRY_LANGUAGES_SOUTHEAST_ASIA_OCEANIA
|
1038 |
+
elif region == "동유럽":
|
1039 |
+
return COUNTRY_LOCATIONS_EAST_EUROPE, COUNTRY_LANGUAGES_EAST_EUROPE
|
1040 |
+
elif region == "서유럽":
|
1041 |
+
return COUNTRY_LOCATIONS_WEST_EUROPE, COUNTRY_LANGUAGES_WEST_EUROPE
|
1042 |
+
elif region == "중동/아프리카":
|
1043 |
+
return COUNTRY_LOCATIONS_ARAB_AFRICA, COUNTRY_LANGUAGES_ARAB_AFRICA
|
1044 |
+
elif region == "아메리카":
|
1045 |
+
return COUNTRY_LOCATIONS_AMERICA, COUNTRY_LANGUAGES_AMERICA
|
1046 |
+
return {}, {}
|
1047 |
+
|
1048 |
+
def search_global(query, region, articles_state_global):
|
1049 |
+
"""지역별 검색 함수"""
|
1050 |
+
status_msg = f"{region} 지역 검색을 시작합니다..."
|
1051 |
+
all_results = []
|
1052 |
+
|
1053 |
+
outputs = [
|
1054 |
+
gr.update(value=status_msg, visible=True),
|
1055 |
+
gr.update(value=f"**검색어:** {query}", visible=True),
|
1056 |
+
]
|
1057 |
+
|
1058 |
+
for _ in global_article_components:
|
1059 |
+
outputs.extend([
|
1060 |
+
gr.update(visible=False), gr.update(), gr.update(),
|
1061 |
+
gr.update(), gr.update()
|
1062 |
+
])
|
1063 |
+
outputs.append([])
|
1064 |
+
|
1065 |
+
yield outputs
|
1066 |
+
|
1067 |
+
# 선택된 지역의 국가 정보 가져오기
|
1068 |
+
locations, languages = get_region_countries(region)
|
1069 |
+
total_countries = len(locations)
|
1070 |
+
|
1071 |
+
for idx, (country, location) in enumerate(locations.items(), 1):
|
1072 |
+
try:
|
1073 |
+
status_msg = f"{region} - {country} 검색 중... ({idx}/{total_countries} 국가)"
|
1074 |
+
outputs[0] = gr.update(value=status_msg, visible=True)
|
1075 |
+
yield outputs
|
1076 |
+
|
1077 |
+
error_message, articles = serphouse_search(query, country)
|
1078 |
+
if not error_message and articles:
|
1079 |
+
for article in articles:
|
1080 |
+
article['source_country'] = country
|
1081 |
+
article['region'] = region
|
1082 |
+
|
1083 |
+
all_results.extend(articles)
|
1084 |
+
sorted_results = sorted(all_results, key=lambda x: x.get('time', ''), reverse=True)
|
1085 |
+
|
1086 |
+
seen_urls = set()
|
1087 |
+
unique_results = []
|
1088 |
+
for article in sorted_results:
|
1089 |
+
url = article.get('link', '')
|
1090 |
+
if url not in seen_urls:
|
1091 |
+
seen_urls.add(url)
|
1092 |
+
unique_results.append(article)
|
1093 |
+
|
1094 |
+
unique_results = unique_results[:MAX_GLOBAL_RESULTS]
|
1095 |
+
|
1096 |
+
outputs = [
|
1097 |
+
gr.update(value=f"{region} - {idx}/{total_countries} 국가 검색 완료\n현재까지 발견된 뉴스: {len(unique_results)}건", visible=True),
|
1098 |
+
gr.update(value=f"**검색어:** {query} | **지역:** {region}", visible=True),
|
1099 |
+
]
|
1100 |
+
|
1101 |
+
for idx, comp in enumerate(global_article_components):
|
1102 |
+
if idx < len(unique_results):
|
1103 |
+
article = unique_results[idx]
|
1104 |
+
image_url = article.get('image_url', '')
|
1105 |
+
image_update = gr.update(value=image_url, visible=True) if image_url and not image_url.startswith('data:image') else gr.update(value=None, visible=False)
|
1106 |
+
|
1107 |
+
korean_summary = translate_to_korean(article['snippet'])
|
1108 |
+
|
1109 |
+
outputs.extend([
|
1110 |
+
gr.update(visible=True),
|
1111 |
+
gr.update(value=f"### [{article['title']}]({article['link']})"),
|
1112 |
+
image_update,
|
1113 |
+
gr.update(value=f"**요약:** {article['snippet']}\n\n**한글 요약:** {korean_summary}"),
|
1114 |
+
gr.update(value=f"**출처:** {article['channel']} | **국가:** {article['source_country']} | **지역:** {article['region']} | **시간:** {article['time']}")
|
1115 |
+
])
|
1116 |
+
else:
|
1117 |
+
outputs.extend([
|
1118 |
+
gr.update(visible=False),
|
1119 |
+
gr.update(),
|
1120 |
+
gr.update(),
|
1121 |
+
gr.update(),
|
1122 |
+
gr.update()
|
1123 |
+
])
|
1124 |
+
|
1125 |
+
outputs.append(unique_results)
|
1126 |
+
yield outputs
|
1127 |
+
|
1128 |
+
except Exception as e:
|
1129 |
+
print(f"Error searching {country}: {str(e)}")
|
1130 |
+
continue
|
1131 |
+
|
1132 |
+
final_status = f"{region} 검색 완료! 총 {len(unique_results)}개의 뉴스가 발견되었습니다."
|
1133 |
+
outputs[0] = gr.update(value=final_status, visible=True)
|
1134 |
+
yield outputs
|
1135 |
+
|
1136 |
+
|
1137 |
+
|
1138 |
+
|
1139 |
+
|
1140 |
+
|
1141 |
+
|
1142 |
+
|
1143 |
+
|
1144 |
with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css, title="NewsAI 서비스") as iface:
|
1145 |
with gr.Tabs():
|
1146 |
# 국가별 탭
|
1147 |
with gr.Tab("국가별"):
|
1148 |
+
gr.Markdown("검색어를 입력하고 원하는 국가(한국 제외)를를 선택하면, 검색어와 일치하는 24시간 이내 뉴스를 최대 100개 출력합니다.")
|
1149 |
gr.Markdown("국가 선택후 검색어에 '한글'을 입력하면 현지 언어로 번역되어 검색합니다. 예: 'Taiwan' 국가 선택후 '삼성' 입력시 '三星'으로 자동 검색")
|
1150 |
|
1151 |
with gr.Column():
|
1152 |
with gr.Row():
|
1153 |
query = gr.Textbox(label="검색어")
|
1154 |
+
country = gr.Dropdown(
|
1155 |
+
choices=sorted(list(COUNTRY_LOCATIONS.keys())),
|
1156 |
+
label="국가",
|
1157 |
+
value="United States"
|
1158 |
+
)
|
1159 |
|
|
|
1160 |
status_message = gr.Markdown("", visible=True)
|
|
|
|
|
1161 |
translated_query_display = gr.Markdown(visible=False)
|
|
|
1162 |
search_button = gr.Button("검색", variant="primary")
|
1163 |
|
1164 |
progress = gr.Progress()
|
|
|
1183 |
|
1184 |
# 전세계 탭
|
1185 |
with gr.Tab("전세계"):
|
1186 |
+
gr.Markdown("대륙별로 24시간 이내 뉴스를 검색합니다.")
|
1187 |
|
1188 |
with gr.Column():
|
1189 |
+
with gr.Column(elem_id="status_area"):
|
1190 |
+
with gr.Row():
|
1191 |
+
query_global = gr.Textbox(label="검색어")
|
1192 |
+
region_select = gr.Dropdown(
|
1193 |
+
choices=REGIONS,
|
1194 |
+
label="지역 선택",
|
1195 |
+
value="동아시아"
|
1196 |
+
)
|
1197 |
+
search_button_global = gr.Button("검색", variant="primary")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1198 |
|
1199 |
+
status_message_global = gr.Markdown("")
|
1200 |
+
translated_query_display_global = gr.Markdown("")
|
1201 |
+
|
1202 |
+
with gr.Column(elem_id="results_area"):
|
1203 |
+
articles_state_global = gr.State([])
|
1204 |
+
global_article_components = []
|
1205 |
+
for i in range(MAX_GLOBAL_RESULTS):
|
1206 |
+
with gr.Group(visible=False) as article_group:
|
1207 |
+
title = gr.Markdown()
|
1208 |
+
image = gr.Image(width=200, height=150)
|
1209 |
+
snippet = gr.Markdown()
|
1210 |
+
info = gr.Markdown()
|
1211 |
+
|
1212 |
+
global_article_components.append({
|
1213 |
+
'group': article_group,
|
1214 |
+
'title': title,
|
1215 |
+
'image': image,
|
1216 |
+
'snippet': snippet,
|
1217 |
+
'info': info,
|
1218 |
+
'index': i,
|
1219 |
+
})
|
|
|
|
|
|
|
1220 |
|
1221 |
+
# AI 리포터 탭
|
1222 |
+
with gr.Tab("AI 리포터"):
|
1223 |
+
gr.Markdown("지난 24시간 동안의 Hacker News 포스트를 AI가 요약하여 보여줍니다.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
|
1225 |
+
with gr.Column():
|
1226 |
+
refresh_button = gr.Button("새로고침", variant="primary")
|
1227 |
+
status_message_hn = gr.Markdown("")
|
1228 |
+
|
1229 |
+
with gr.Column(elem_id="hn_results_area"):
|
1230 |
+
hn_articles_state = gr.State([])
|
1231 |
+
hn_article_components = []
|
1232 |
+
for i in range(100):
|
1233 |
+
with gr.Group(visible=False, elem_classes="hn-article-group") as article_group:
|
1234 |
+
title = gr.Markdown()
|
1235 |
+
info = gr.Markdown()
|
1236 |
+
with gr.Row():
|
1237 |
+
report_button = gr.Button("리포팅 생성", size="sm", variant="primary")
|
1238 |
+
show_report = gr.Button("펼쳐 보기", size="sm", visible=False)
|
1239 |
+
report_content = gr.Markdown(visible=False)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1240 |
|
1241 |
+
hn_article_components.append({
|
1242 |
+
'group': article_group,
|
1243 |
+
'title': title,
|
1244 |
+
'info': info,
|
1245 |
+
'report_button': report_button,
|
1246 |
+
'show_report': show_report,
|
1247 |
+
'report_content': report_content,
|
1248 |
+
'index': i,
|
1249 |
+
})
|
1250 |
+
|
1251 |
+
# 이벤트 연결 부분
|
1252 |
+
# 국가별 탭 이벤트
|
1253 |
+
search_outputs = [status_message, translated_query_display, gr.Markdown(visible=False)]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1254 |
for comp in article_components:
|
1255 |
search_outputs.extend([
|
1256 |
comp['group'], comp['title'], comp['image'],
|
1257 |
comp['snippet'], comp['info']
|
1258 |
])
|
1259 |
search_outputs.append(articles_state)
|
1260 |
+
|
1261 |
search_button.click(
|
1262 |
+
fn=search_and_display,
|
1263 |
inputs=[query, country, articles_state],
|
1264 |
outputs=search_outputs,
|
1265 |
show_progress=True
|
1266 |
)
|
1267 |
|
1268 |
+
# 전세계 탭 이벤트
|
1269 |
+
global_search_outputs = [status_message_global, translated_query_display_global]
|
|
|
|
|
|
|
|
|
1270 |
for comp in global_article_components:
|
1271 |
global_search_outputs.extend([
|
1272 |
comp['group'], comp['title'], comp['image'],
|
1273 |
comp['snippet'], comp['info']
|
1274 |
])
|
1275 |
global_search_outputs.append(articles_state_global)
|
1276 |
+
|
1277 |
search_button_global.click(
|
1278 |
+
fn=search_global,
|
1279 |
+
inputs=[query_global, region_select, articles_state_global],
|
1280 |
outputs=global_search_outputs,
|
1281 |
show_progress=True
|
1282 |
)
|
1283 |
|
1284 |
+
# AI 리포터 탭 이벤트
|
1285 |
+
hn_outputs = [status_message_hn]
|
1286 |
+
for comp in hn_article_components:
|
1287 |
+
hn_outputs.extend([
|
1288 |
+
comp['group'],
|
1289 |
+
comp['title'],
|
1290 |
+
comp['info'],
|
1291 |
+
comp['report_button'],
|
1292 |
+
comp['report_content'],
|
1293 |
+
comp['show_report']
|
1294 |
+
])
|
1295 |
+
|
1296 |
+
# 각 컴포넌트별 이벤트 연결
|
1297 |
+
for comp in hn_article_components:
|
1298 |
+
# 리포팅 생성 버튼 이벤트
|
1299 |
+
comp['report_button'].click(
|
1300 |
+
fn=generate_report,
|
1301 |
+
inputs=[
|
1302 |
+
comp['title'],
|
1303 |
+
comp['info']
|
1304 |
+
],
|
1305 |
+
outputs=[
|
1306 |
+
comp['report_content'],
|
1307 |
+
comp['show_report']
|
1308 |
+
],
|
1309 |
+
api_name=f"generate_report_{comp['index']}",
|
1310 |
+
show_progress=True
|
1311 |
+
)
|
1312 |
+
|
1313 |
+
# 펼쳐보기/접기 버튼 이벤트
|
1314 |
+
comp['show_report'].click(
|
1315 |
+
fn=toggle_report,
|
1316 |
+
inputs=[
|
1317 |
+
comp['report_content'],
|
1318 |
+
comp['show_report']
|
1319 |
+
],
|
1320 |
+
outputs=[
|
1321 |
+
comp['report_content'],
|
1322 |
+
comp['show_report']
|
1323 |
+
],
|
1324 |
+
api_name=f"toggle_report_{comp['index']}"
|
1325 |
+
)
|
1326 |
+
|
1327 |
+
# 새로고침 버튼 이벤트
|
1328 |
+
refresh_button.click(
|
1329 |
+
fn=refresh_hn_stories,
|
1330 |
+
outputs=hn_outputs,
|
1331 |
+
show_progress=True
|
1332 |
+
)
|
1333 |
+
|
1334 |
+
iface.launch(
|
1335 |
+
server_name="0.0.0.0",
|
1336 |
+
server_port=7860,
|
1337 |
+
share=True,
|
1338 |
+
auth=("it1","chosun1"),
|
1339 |
+
ssl_verify=False,
|
1340 |
+
show_error=True
|
1341 |
+
)
|