text-summarizer-aweebtaku 1.2.4__tar.gz → 1.2.5__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.
Files changed (21) hide show
  1. {text_summarizer_aweebtaku-1.2.4/text_summarizer_aweebtaku.egg-info → text_summarizer_aweebtaku-1.2.5}/PKG-INFO +11 -1
  2. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/README.md +10 -0
  3. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/setup.py +1 -1
  4. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer/__init__.py +1 -1
  5. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer/cli.py +16 -8
  6. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5/text_summarizer_aweebtaku.egg-info}/PKG-INFO +11 -1
  7. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/LICENSE +0 -0
  8. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/MANIFEST.in +0 -0
  9. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/create_shortcuts.bat +0 -0
  10. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/requirements.txt +0 -0
  11. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/setup.cfg +0 -0
  12. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer/create_shortcuts.py +0 -0
  13. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer/data/__init__.py +0 -0
  14. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer/data/tennis.csv +0 -0
  15. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer/summarizer.py +0 -0
  16. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer/ui.py +0 -0
  17. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer_aweebtaku.egg-info/SOURCES.txt +0 -0
  18. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer_aweebtaku.egg-info/dependency_links.txt +0 -0
  19. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer_aweebtaku.egg-info/entry_points.txt +0 -0
  20. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/text_summarizer_aweebtaku.egg-info/requires.txt +0 -0
  21. {text_summarizer_aweebtaku-1.2.4 → text_summarizer_aweebtaku-1.2.5}/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.2.4
3
+ Version: 1.2.5
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: Aditya Chaurasiya
@@ -74,6 +74,13 @@ cd Summarizer
74
74
  pip install -e .
75
75
  ```
76
76
 
77
+ ### Upgrade Package
78
+
79
+ To upgrade to the latest version with new features:
80
+ ```bash
81
+ pip install --upgrade text-summarizer-aweebtaku
82
+ ```
83
+
77
84
  ### Create Desktop Shortcuts (Windows)
78
85
 
79
86
  After installation, create desktop shortcuts for easy access:
@@ -106,6 +113,9 @@ summarizer = TextSummarizer(glove_path='path/to/your/glove.6B.100d.txt')
106
113
  After installation, you can use these commands from anywhere:
107
114
 
108
115
  ```bash
116
+ # Upgrade to the latest version
117
+ pip install --upgrade text-summarizer-aweebtaku
118
+
109
119
  # Launch the graphical user interface
110
120
  text-summarizer-gui
111
121
 
@@ -37,6 +37,13 @@ cd Summarizer
37
37
  pip install -e .
38
38
  ```
39
39
 
40
+ ### Upgrade Package
41
+
42
+ To upgrade to the latest version with new features:
43
+ ```bash
44
+ pip install --upgrade text-summarizer-aweebtaku
45
+ ```
46
+
40
47
  ### Create Desktop Shortcuts (Windows)
41
48
 
42
49
  After installation, create desktop shortcuts for easy access:
@@ -69,6 +76,9 @@ summarizer = TextSummarizer(glove_path='path/to/your/glove.6B.100d.txt')
69
76
  After installation, you can use these commands from anywhere:
70
77
 
71
78
  ```bash
79
+ # Upgrade to the latest version
80
+ pip install --upgrade text-summarizer-aweebtaku
81
+
72
82
  # Launch the graphical user interface
73
83
  text-summarizer-gui
74
84
 
@@ -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.2.4",
11
+ version="1.2.5",
12
12
  author="Aditya Chaurasiya",
13
13
  author_email="adityachaurasiya57527@gmail.com",
14
14
  description="A text summarization tool using GloVe embeddings and PageRank algorithm",
@@ -1,3 +1,3 @@
1
1
  from .summarizer import TextSummarizer
2
2
 
3
- __version__ = "1.2.4"
3
+ __version__ = "1.2.5"
@@ -2,14 +2,22 @@ import argparse
2
2
  from .summarizer import TextSummarizer
3
3
 
4
4
  def main():
5
- parser = argparse.ArgumentParser(description="Text Summarization Tool")
6
- parser.add_argument("--glove-path", default="glove.6B.100d.txt/glove.6B.100d.txt",
7
- help="Path to GloVe embeddings file")
8
- parser.add_argument("--num-sentences", type=int, default=5,
9
- help="Number of sentences in summary")
10
- parser.add_argument("--csv-file", help="Path to CSV file with articles")
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")
5
+ parser = argparse.ArgumentParser(
6
+ description="Text Summarization Tool",
7
+ epilog="""
8
+ Examples:
9
+ text-summarizer-aweebtaku --csv-file data.csv --article-id 1
10
+ text-summarizer-aweebtaku --gui
11
+
12
+ Desktop Shortcuts (Windows):
13
+ text-summarizer-shortcuts # Create desktop shortcuts
14
+ text-summarizer-gui # Launch graphical interface
15
+
16
+ Upgrade:
17
+ pip install --upgrade text-summarizer-aweebtaku
18
+ """,
19
+ formatter_class=argparse.RawDescriptionHelpFormatter
20
+ )
13
21
 
14
22
  args = parser.parse_args()
15
23
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: text-summarizer-aweebtaku
3
- Version: 1.2.4
3
+ Version: 1.2.5
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: Aditya Chaurasiya
@@ -74,6 +74,13 @@ cd Summarizer
74
74
  pip install -e .
75
75
  ```
76
76
 
77
+ ### Upgrade Package
78
+
79
+ To upgrade to the latest version with new features:
80
+ ```bash
81
+ pip install --upgrade text-summarizer-aweebtaku
82
+ ```
83
+
77
84
  ### Create Desktop Shortcuts (Windows)
78
85
 
79
86
  After installation, create desktop shortcuts for easy access:
@@ -106,6 +113,9 @@ summarizer = TextSummarizer(glove_path='path/to/your/glove.6B.100d.txt')
106
113
  After installation, you can use these commands from anywhere:
107
114
 
108
115
  ```bash
116
+ # Upgrade to the latest version
117
+ pip install --upgrade text-summarizer-aweebtaku
118
+
109
119
  # Launch the graphical user interface
110
120
  text-summarizer-gui
111
121