Spaces:
Sleeping
Sleeping
File size: 958 Bytes
738953f 4012bf8 43a0009 070ef09 4012bf8 7327597 dc39e39 7327597 4012bf8 dfb729a b1a3ea2 ae656a9 070ef09 7327597 85e6b2a 43a0009 7327597 070ef09 7327597 0290677 75fb651 dc39e39 |
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 |
import gradio as gr
import re
import requests
from bs4 import BeautifulSoup
def extract_pdf_links():
url = 'https://finance.naver.com/research/company_list.naver'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
pdf_links = []
for link in soup.find_all('a', href=True):
if re.search(r'\.pdf', link['href']):
pdf_links.append(link['href'])
return pdf_links[:100]
def generate_html(pdf_links):
html = ""
for link in pdf_links:
html += f'<a href="{link}" target="_blank" download>{link}</a><br/>'
return html
def extract_and_download():
pdf_links = extract_pdf_links()
return generate_html(pdf_links)
title = "네이버 종목별 증권리포트 최근 30개를 바로 확인하세요."
iface = gr.Interface(extract_and_download,
inputs=[],
outputs="html",
title=title)
iface.launch()
|