aiqtech commited on
Commit
75fb651
·
verified ·
1 Parent(s): eb9a23f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
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.launch(title=title)
 
 
 
 
 
 
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()