Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,34 +1,29 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
# === Sample Data ===
|
4 |
-
|
5 |
{
|
6 |
"source": "The Daily Signal",
|
7 |
"title": "Victor Davis Hanson: The Trump Deranged “Experts” Were Wrong. Again.",
|
8 |
"link": "https://www.youtube.com/live/WPSiYIl8ZLg "
|
9 |
},
|
10 |
{
|
11 |
-
"source": "
|
12 |
-
"title": "
|
13 |
-
"link": "https://
|
14 |
},
|
15 |
{
|
16 |
"source": "Fox News",
|
17 |
-
"title": "
|
18 |
-
"link": "https://
|
19 |
}
|
20 |
]
|
21 |
|
22 |
-
|
23 |
-
{
|
24 |
-
"show": "OANN Live Interview",
|
25 |
-
"date": "April 5, 2024",
|
26 |
-
"link": "https://example.com/vdh-oann-appearance1 "
|
27 |
-
},
|
28 |
{
|
29 |
-
"show": "
|
30 |
-
"date": "
|
31 |
-
"link": "https://
|
32 |
}
|
33 |
]
|
34 |
|
@@ -82,8 +77,7 @@ with gr.Blocks(theme="soft") as demo:
|
|
82 |
- **Fair Use**: Quoted headlines and excerpts fall under U.S. fair use doctrine for purposes of research, criticism, and news reporting.
|
83 |
- **GDPR Compliance**: This app does not collect personal data about users or store unnecessary personal information about the subject.
|
84 |
- **Right to Be Forgotten**: If the individual or any third party requests removal of content or data, please use the Contact tab.
|
85 |
-
- **No Affiliate Marketing**:
|
86 |
-
"""
|
87 |
)
|
88 |
|
89 |
# Launch the app
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
# === Sample Data ===
|
4 |
+
tv_appearances = [
|
5 |
{
|
6 |
"source": "The Daily Signal",
|
7 |
"title": "Victor Davis Hanson: The Trump Deranged “Experts” Were Wrong. Again.",
|
8 |
"link": "https://www.youtube.com/live/WPSiYIl8ZLg "
|
9 |
},
|
10 |
{
|
11 |
+
"source": "The Daily Signal",
|
12 |
+
"title": "Victor Davis Hanson: 128 Democrats Reject Latest Trump Impeachment—Here’s The Major Reason Why",
|
13 |
+
"link": "https://www.youtube.com/watch?v=uQzoMjEd3G8"
|
14 |
},
|
15 |
{
|
16 |
"source": "Fox News",
|
17 |
+
"title": "Buttigieg is even worse than Biden: Victor Davis Hanson",
|
18 |
+
"link": "https://www.youtube.com/watch?v=9iIjdYZyUy0 "
|
19 |
}
|
20 |
]
|
21 |
|
22 |
+
news_mentions = [
|
|
|
|
|
|
|
|
|
|
|
23 |
{
|
24 |
+
"show": "Las Vegas Review Journal - VICTOR DAVIS HANSON: In the end, everyone hated the Iranian theocracy",
|
25 |
+
"date": "June 28, 2025 - 9:01 pm",
|
26 |
+
"link": "https://www.reviewjournal.com/opinion/opinion-columns/victor-davis-hanson/victor-davis-hanson-in-the-end-everyone-hated-the-iranian-theocracy-3390658/"
|
27 |
}
|
28 |
]
|
29 |
|
|
|
77 |
- **Fair Use**: Quoted headlines and excerpts fall under U.S. fair use doctrine for purposes of research, criticism, and news reporting.
|
78 |
- **GDPR Compliance**: This app does not collect personal data about users or store unnecessary personal information about the subject.
|
79 |
- **Right to Be Forgotten**: If the individual or any third party requests removal of content or data, please use the Contact tab.
|
80 |
+
- **No Affiliate Marketing**: I do not have an Amazon account, link to the main author.
|
|
|
81 |
)
|
82 |
|
83 |
# Launch the app
|