Update app.py
Browse files
app.py
CHANGED
@@ -21,10 +21,12 @@ def generate_html(pdf_links):
|
|
21 |
html += f'<a href="{link}" target="_blank">{link}</a><br/>'
|
22 |
return html
|
23 |
|
24 |
-
iface = gr.Interface(extract_pdf_links,
|
25 |
-
inputs="text",
|
26 |
-
outputs="text")
|
27 |
|
28 |
title = "네이버 증권 리서치 링크- https://finance.naver.com/research/company_list.naver"
|
29 |
|
30 |
-
iface.
|
|
|
|
|
|
|
|
|
|
|
|
21 |
html += f'<a href="{link}" target="_blank">{link}</a><br/>'
|
22 |
return html
|
23 |
|
|
|
|
|
|
|
24 |
|
25 |
title = "네이버 증권 리서치 링크- https://finance.naver.com/research/company_list.naver"
|
26 |
|
27 |
+
iface = gr.Interface(extract_pdf_links,
|
28 |
+
inputs="text",
|
29 |
+
outputs="text",
|
30 |
+
title=title)
|
31 |
+
|
32 |
+
iface.launch()
|