-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimplifiedNLPNewsSummary.py
117 lines (82 loc) · 3.03 KB
/
SimplifiedNLPNewsSummary.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Summarizing News Articles
# Using Natural language Processing
# Machine Learning
# Building a Graphical User Interface
# Simplified Natural Language Processing done for you using these tools
import tkinter as tk
import nltk
from textblob import TextBlob
from newspaper import Article
# Function to Summarize
def summarize():
url = utext.get("1.0", "end").strip()
# Summarization
nltk.download('punkt') # Must uncommnet and download first. Then not needed after first downloaded
article = Article(url)
article.download()
article.parse()
article.nlp()
title.config(state="normal")
author.config(state="normal")
publication.config(state="normal")
summary.config(state="normal")
sentiment.config(state="normal")
title.delete("1.0", "end")
title.insert("1.0", article.title)
author.delete("1.0", "end")
author.insert("1.0", article.authors)
publication.delete("1.0", "end")
publication.insert("1.0", article.publish_date)
summary.delete("1.0", "end")
summary.insert("1.0", article.summary)
# Sentiment - Polarity of Article
analysis = TextBlob(article.text)
sentiment.delete("1.0", "end")
sentiment.insert("1.0",
f'Polarity: {analysis.polarity}, Sentiment: {"positive" if analysis.polarity > 0 else "negative" if analysis.polarity < 0 else "neutral"}')
title.config(state="disable")
author.config(state="disable")
publication.config(state="disable")
summary.config(state="disable")
sentiment.config(state="disable")
# Used this code to create the boxes I needed and then switched to lines 29-33 in order to use the function
# print(f'Title: {article.title}')
# print(f'Authors: {article.authors}')
# print(f'Publication Date: {article.publish_date}')
# print(f'Summary: {article.summary}')
# GUI - Graphical User Interface
root = tk.Tk()
root.title("News Summarizer")
root.geometry("1200x600")
tlabel = tk.Label(root, text="Title")
tlabel.pack()
title = tk.Text(root, height=1, width=140)
title.config(state="disabled", bg="#dddddd")
title.pack()
alabel = tk.Label(root, text="Author")
alabel.pack()
author = tk.Text(root, height=1, width=140)
author.config(state="disabled", bg="#dddddd")
author.pack()
plabel = tk.Label(root, text="Publication Date")
plabel.pack()
publication = tk.Text(root, height=1, width=140)
publication.config(state="disabled", bg="#dddddd")
publication.pack()
slabel = tk.Label(root, text="Summary")
slabel.pack()
summary = tk.Text(root, height=20, width=140)
summary.config(state="disabled", bg="#dddddd")
summary.pack()
selabel = tk.Label(root, text="Sentiment Analysis")
selabel.pack()
sentiment = tk.Text(root, height=1, width=140)
sentiment.config(state="disabled", bg="#dddddd")
sentiment.pack()
ulabel = tk.Label(root, text="URL")
ulabel.pack()
utext = tk.Text(root, height=1, width=140)
utext.pack()
btn = tk.Button(root, text="Summarize", command=summarize)
btn.pack()
root.mainloop()