text-summarizer-aweebtaku 1.0.0__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {text_summarizer_aweebtaku-1.0.0/text_summarizer_aweebtaku.egg-info → text_summarizer_aweebtaku-1.0.1}/PKG-INFO +7 -3
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/README.md +6 -2
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/setup.py +2 -1
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer/cli.py +7 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1/text_summarizer_aweebtaku.egg-info}/PKG-INFO +7 -3
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer_aweebtaku.egg-info/entry_points.txt +1 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/LICENSE +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/MANIFEST.in +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/requirements.txt +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/setup.cfg +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer/__init__.py +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer/data/tennis.csv +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer/summarizer.py +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer/ui.py +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer_aweebtaku.egg-info/SOURCES.txt +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer_aweebtaku.egg-info/dependency_links.txt +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer_aweebtaku.egg-info/requires.txt +0 -0
- {text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer_aweebtaku.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: text-summarizer-aweebtaku
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: A text summarization tool using GloVe embeddings and PageRank algorithm
|
|
5
5
|
Home-page: https://github.com/AWeebTaku/Summarizer
|
|
6
6
|
Author: Your Name
|
|
@@ -96,10 +96,14 @@ text-summarizer-aweebtaku --csv-file data/tennis.csv --article-id 1
|
|
|
96
96
|
text-summarizer-aweebtaku
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
###
|
|
99
|
+
### Graphical User Interface
|
|
100
100
|
|
|
101
101
|
```bash
|
|
102
|
-
|
|
102
|
+
# Launch GUI (easiest way)
|
|
103
|
+
text-summarizer-aweebtaku --gui
|
|
104
|
+
|
|
105
|
+
# Or use the dedicated GUI command
|
|
106
|
+
text-summarizer-gui
|
|
103
107
|
```
|
|
104
108
|
|
|
105
109
|
### Python API
|
|
@@ -60,10 +60,14 @@ text-summarizer-aweebtaku --csv-file data/tennis.csv --article-id 1
|
|
|
60
60
|
text-summarizer-aweebtaku
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
###
|
|
63
|
+
### Graphical User Interface
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
|
|
66
|
+
# Launch GUI (easiest way)
|
|
67
|
+
text-summarizer-aweebtaku --gui
|
|
68
|
+
|
|
69
|
+
# Or use the dedicated GUI command
|
|
70
|
+
text-summarizer-gui
|
|
67
71
|
```
|
|
68
72
|
|
|
69
73
|
### Python API
|
|
@@ -8,7 +8,7 @@ with open("requirements.txt", "r", encoding="utf-8") as fh:
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="text-summarizer-aweebtaku",
|
|
11
|
-
version="1.0.
|
|
11
|
+
version="1.0.1",
|
|
12
12
|
author="Your Name",
|
|
13
13
|
author_email="your.email@example.com",
|
|
14
14
|
description="A text summarization tool using GloVe embeddings and PageRank algorithm",
|
|
@@ -32,6 +32,7 @@ setup(
|
|
|
32
32
|
entry_points={
|
|
33
33
|
"console_scripts": [
|
|
34
34
|
"text-summarizer-aweebtaku=text_summarizer.cli:main",
|
|
35
|
+
"text-summarizer-gui=text_summarizer.ui:main",
|
|
35
36
|
],
|
|
36
37
|
},
|
|
37
38
|
include_package_data=True,
|
|
@@ -9,9 +9,16 @@ def main():
|
|
|
9
9
|
help="Number of sentences in summary")
|
|
10
10
|
parser.add_argument("--csv-file", help="Path to CSV file with articles")
|
|
11
11
|
parser.add_argument("--article-id", type=int, help="Article ID to summarize (if CSV provided)")
|
|
12
|
+
parser.add_argument("--gui", action="store_true", help="Launch graphical user interface")
|
|
12
13
|
|
|
13
14
|
args = parser.parse_args()
|
|
14
15
|
|
|
16
|
+
if args.gui:
|
|
17
|
+
# Import and run GUI
|
|
18
|
+
from .ui import main as gui_main
|
|
19
|
+
gui_main()
|
|
20
|
+
return
|
|
21
|
+
|
|
15
22
|
try:
|
|
16
23
|
summarizer = TextSummarizer(glove_path=args.glove_path, num_sentences=args.num_sentences)
|
|
17
24
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: text-summarizer-aweebtaku
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: A text summarization tool using GloVe embeddings and PageRank algorithm
|
|
5
5
|
Home-page: https://github.com/AWeebTaku/Summarizer
|
|
6
6
|
Author: Your Name
|
|
@@ -96,10 +96,14 @@ text-summarizer-aweebtaku --csv-file data/tennis.csv --article-id 1
|
|
|
96
96
|
text-summarizer-aweebtaku
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
###
|
|
99
|
+
### Graphical User Interface
|
|
100
100
|
|
|
101
101
|
```bash
|
|
102
|
-
|
|
102
|
+
# Launch GUI (easiest way)
|
|
103
|
+
text-summarizer-aweebtaku --gui
|
|
104
|
+
|
|
105
|
+
# Or use the dedicated GUI command
|
|
106
|
+
text-summarizer-gui
|
|
103
107
|
```
|
|
104
108
|
|
|
105
109
|
### Python API
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer/__init__.py
RENAMED
|
File without changes
|
{text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer/data/tennis.csv
RENAMED
|
File without changes
|
{text_summarizer_aweebtaku-1.0.0 → text_summarizer_aweebtaku-1.0.1}/text_summarizer/summarizer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|