Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rajesh1729
/
gradio-realtime-news-app
like
3
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
rajesh1729
commited on
Feb 15, 2022
Commit
f0f3661
·
1 Parent(s):
d7b5319
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
import json
3
+
import requests
4
+
from newspaper import Article
5
+
6
+
7
+
def get_news(search):
8
+
article_texts=[]
9
+