-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
90 lines (66 loc) · 2.28 KB
/
main.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
import tkinter as tk
import nltk
from textblob import TextBlob
from newspaper import Article
def summarize():
url = utext.get('1.0', "end").strip()
try:
article = Article(url)
article.download()
article.parse()
article.nlp()
except Exception as e:
print(f"Error: {e}")
return
title.config(state='normal')
author.config(state='normal')
publication.config(state='normal')
summary.config(state='normal')
sentiment.config(state='normal')
# Clear existing content in the summary Text widget
summary.delete('1.0', 'end')
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.insert('1.0', article.summary)
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"}')
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="Publishing 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()