Open-AutoTools 0.0.2.post1__tar.gz → 0.0.3rc1__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 (40) hide show
  1. open_autotools-0.0.3rc1/Open_AutoTools.egg-info/PKG-INFO +307 -0
  2. open_autotools-0.0.3rc1/Open_AutoTools.egg-info/SOURCES.txt +34 -0
  3. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/Open_AutoTools.egg-info/entry_points.txt +2 -1
  4. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/Open_AutoTools.egg-info/requires.txt +10 -1
  5. open_autotools-0.0.3rc1/PKG-INFO +307 -0
  6. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/README.md +16 -0
  7. open_autotools-0.0.3rc1/autotools/autocaps/tests/__init__.py +1 -0
  8. open_autotools-0.0.3rc1/autotools/autocaps/tests/test_autocaps_core.py +45 -0
  9. open_autotools-0.0.3rc1/autotools/autocaps/tests/test_autocaps_integration.py +46 -0
  10. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/autotools/autoip/core.py +133 -40
  11. open_autotools-0.0.3rc1/autotools/autoip/tests/__init__.py +1 -0
  12. open_autotools-0.0.3rc1/autotools/autoip/tests/test_autoip_core.py +72 -0
  13. open_autotools-0.0.3rc1/autotools/autoip/tests/test_autoip_integration.py +92 -0
  14. open_autotools-0.0.3rc1/autotools/autolower/tests/__init__.py +1 -0
  15. open_autotools-0.0.3rc1/autotools/autolower/tests/test_autolower_core.py +45 -0
  16. open_autotools-0.0.3rc1/autotools/autolower/tests/test_autolower_integration.py +46 -0
  17. open_autotools-0.0.3rc1/autotools/autospell/__init__.py +3 -0
  18. open_autotools-0.0.3rc1/autotools/autospell/core.py +222 -0
  19. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/autotools/autotranslate/core.py +13 -1
  20. open_autotools-0.0.3rc1/autotools/cli.py +567 -0
  21. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/setup.py +41 -4
  22. open_autotools-0.0.2.post1/Open_AutoTools.egg-info/PKG-INFO +0 -37
  23. open_autotools-0.0.2.post1/Open_AutoTools.egg-info/SOURCES.txt +0 -23
  24. open_autotools-0.0.2.post1/PKG-INFO +0 -37
  25. open_autotools-0.0.2.post1/autotools/cli.py +0 -183
  26. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/LICENSE +0 -0
  27. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/Open_AutoTools.egg-info/dependency_links.txt +0 -0
  28. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/Open_AutoTools.egg-info/top_level.txt +0 -0
  29. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/autotools/__init__.py +0 -0
  30. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/autotools/autocaps/__init__.py +0 -0
  31. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/autotools/autocaps/core.py +0 -0
  32. {open_autotools-0.0.2.post1/autotools/autolower → open_autotools-0.0.3rc1/autotools/autodownload}/__init__.py +0 -0
  33. {open_autotools-0.0.2.post1/autotools/downloader → open_autotools-0.0.3rc1/autotools/autodownload}/core.py +0 -0
  34. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/autotools/autoip/__init__.py +0 -0
  35. {open_autotools-0.0.2.post1/autotools/downloader → open_autotools-0.0.3rc1/autotools/autolower}/__init__.py +0 -0
  36. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/autotools/autolower/core.py +0 -0
  37. {open_autotools-0.0.2.post1/autotools/password → open_autotools-0.0.3rc1/autotools/autopassword}/__init__.py +0 -0
  38. {open_autotools-0.0.2.post1/autotools/password → open_autotools-0.0.3rc1/autotools/autopassword}/core.py +0 -0
  39. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/autotools/autotranslate/__init__.py +0 -0
  40. {open_autotools-0.0.2.post1 → open_autotools-0.0.3rc1}/setup.cfg +0 -0
@@ -0,0 +1,307 @@
1
+ Metadata-Version: 2.2
2
+ Name: Open-AutoTools
3
+ Version: 0.0.3rc1
4
+ Summary: A suite of automated tools accessible via CLI with a simple `autotools` command
5
+ Home-page: https://github.com/BabylooPro/Open-AutoTools
6
+ Author: BabylooPro
7
+ Author-email: maxremy.dev@gmail.com
8
+ Project-URL: Bug Tracker, https://github.com/BabylooPro/Open-AutoTools/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.6
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: Brotli==1.1.0
16
+ Requires-Dist: certifi==2024.2.2
17
+ Requires-Dist: charset-normalizer==3.3.2
18
+ Requires-Dist: click==8.1.3
19
+ Requires-Dist: cryptography==42.0.2
20
+ Requires-Dist: idna==3.6
21
+ Requires-Dist: importlib-metadata>=7.0.1
22
+ Requires-Dist: joblib==1.3.2
23
+ Requires-Dist: Levenshtein==0.25.0
24
+ Requires-Dist: mutagen==1.47.0
25
+ Requires-Dist: packaging>=23.0
26
+ Requires-Dist: platformdirs==4.2.0
27
+ Requires-Dist: pycryptodomex==3.20.0
28
+ Requires-Dist: pyperclip==1.8.2
29
+ Requires-Dist: python-Levenshtein==0.25.0
30
+ Requires-Dist: python-dotenv>=1.0.0
31
+ Requires-Dist: rapidfuzz==3.6.1
32
+ Requires-Dist: regex==2023.12.25
33
+ Requires-Dist: requests>=2.32.2
34
+ Requires-Dist: textblob==0.18.0.post0
35
+ Requires-Dist: tomli==2.0.1
36
+ Requires-Dist: tqdm==4.66.2
37
+ Requires-Dist: urllib3==2.2.1
38
+ Requires-Dist: websockets==13.0.1
39
+ Requires-Dist: yapf==0.40.2
40
+ Requires-Dist: yt-dlp>=2024.3.10
41
+ Requires-Dist: zipp==3.17.0
42
+ Requires-Dist: translate==3.6.1
43
+ Requires-Dist: langdetect==1.0.9
44
+ Requires-Dist: deep-translator==1.11.4
45
+ Requires-Dist: netifaces>=0.11.0
46
+ Requires-Dist: speedtest-cli>=2.1.3
47
+ Requires-Dist: psutil>=5.9.0
48
+ Requires-Dist: setuptools>=40.8.0
49
+ Requires-Dist: language-tool-python>=2.7.1
50
+ Requires-Dist: spacy>=3.7.2
51
+ Requires-Dist: beautifulsoup4>=4.12.0
52
+ Provides-Extra: test
53
+ Requires-Dist: pytest>=7.4.0; extra == "test"
54
+ Requires-Dist: pytest-cov>=4.1.0; extra == "test"
55
+ Dynamic: author
56
+ Dynamic: author-email
57
+ Dynamic: classifier
58
+ Dynamic: description
59
+ Dynamic: description-content-type
60
+ Dynamic: home-page
61
+ Dynamic: project-url
62
+ Dynamic: provides-extra
63
+ Dynamic: requires-dist
64
+ Dynamic: requires-python
65
+ Dynamic: summary
66
+
67
+ # Open-AutoTools
68
+
69
+ Open-AutoTools is an innovative project developed in Python, specifically designed to offer a suite of automated tools directly accessible via the terminal. This project aims to simplify and automate daily tasks for developers and terminal users. It is designed to be used as a set of CLI commands, making its features directly accessible from the user's terminal.
70
+
71
+ https://github.com/BabylooPro/Open-AutoTools/assets/35376790/d57f2b9d-55f8-4368-bb40-c0010eb9d49a
72
+
73
+ ## How to install to use directly
74
+
75
+ To install Open-AutoTools, use the following command in your terminal: `pip install open-autotools`
76
+
77
+ This command installs all the necessary tools to integrate Open-AutoTools into your workflow.
78
+
79
+ You can also find the package on PyPI at: https://pypi.org/project/Open-AutoTools/
80
+
81
+ ## How to develop more features
82
+
83
+ Open-AutoTools is developed using Python 3.11.
84
+
85
+ ```bash
86
+ # Create a virtual environment
87
+ python -m venv venv
88
+
89
+ # Activate virtual environment
90
+ source venv/bin/activate # On macOS/Linux
91
+ venv\Scripts\activate # On Windows
92
+
93
+ # Install project dependencies
94
+ pip install -r requirements.txt
95
+
96
+ # For development, install in editable mode
97
+ pip install -e .
98
+ ```
99
+
100
+ ## Key Features
101
+
102
+ ### AutoCaps
103
+
104
+ - **Description:** Converts any text entered by the user to uppercase.
105
+ - **Usage:**
106
+ ```
107
+ ~ ❯ autocaps "Your text here."
108
+ ```
109
+ - **Output:**
110
+ ```
111
+ YOUR TEXT HERE.
112
+ ```
113
+
114
+ ### AutoLower
115
+
116
+ - **Description:** Converts any text entered by the user to lowercase.
117
+ - **Usage:**
118
+ ```
119
+ ~ ❯ autolower "Your text here."
120
+ ```
121
+ - **Output:**
122
+ ```
123
+ your text here.
124
+ ```
125
+
126
+ ### AutoPassword
127
+
128
+ - **Description:** Generates secure random passwords and encryption keys with customizable options.
129
+ - **Usage:**
130
+ ```
131
+ ~ ❯ autopassword --length 16
132
+ ~ ❯ autopassword --no-special --length 8
133
+ ~ ❯ autopassword --gen-key
134
+ ~ ❯ autopassword --password-key "your-password" --analyze
135
+ ```
136
+ - **Options:**
137
+ - `--length, -l`: Set password length (default: 12)
138
+ - `--no-uppercase`: Exclude uppercase letters
139
+ - `--no-numbers`: Exclude numbers
140
+ - `--no-special`: Exclude special characters
141
+ - `--min-special`: Minimum number of special characters (default: 1)
142
+ - `--min-numbers`: Minimum number of numbers (default: 1)
143
+ - `--gen-key`: Generate a random encryption key
144
+ - `--password-key`: Generate an encryption key from a password
145
+ - `--analyze`: Show password strength analysis
146
+
147
+ These examples demonstrate how the terminal will display the results after executing each command, providing a straightforward way for users to understand the immediate effects of these commands.
148
+
149
+ ### AutoTranslate
150
+
151
+ - **Description:** Translates text between languages with automatic source language detection.
152
+ - **Usage:**
153
+
154
+ ```
155
+ ~ ❯ autotranslate "Bonjour le monde" --to en
156
+ Hello world
157
+
158
+ ~ ❯ autotranslate "Hello world" --to fr --copy
159
+ Bonjour le monde
160
+ // Result also copied to clipboard
161
+
162
+ ~ ❯ autotranslate "こんにちは" --to en --detect
163
+ [Detected: ja] Hello
164
+
165
+ ~ ❯ autotranslate --list-languages
166
+ // Shows all supported languages
167
+ ```
168
+
169
+ - **Options:**
170
+ - `--to`: Target language code (default: en)
171
+ - `--from`: Source language code (default: auto-detect)
172
+ - `--copy`: Copy translation to clipboard
173
+ - `--detect`: Show detected source language
174
+ - `--list-languages`: Show all supported language codes and names
175
+
176
+ ### AutoSpell (unreleased)
177
+
178
+ - **Description:** Checks and corrects spelling in text with multi-language support.
179
+ - **Usage:**
180
+ ```
181
+ ~ ❯ autospell "Your text with misspellings"
182
+ ~ ❯ autospell --lang fr "Votre texte avec des fautes"
183
+ ~ ❯ autospell --file document.txt
184
+ ```
185
+ - **Options:**
186
+ - `--lang`: Language code (default: en)
187
+ - `--file`: Input from file
188
+ - `--copy`: Copy corrected text to clipboard
189
+ - `--suggest`: Show alternative suggestions
190
+ - `--interactive`: Interactive correction mode
191
+
192
+ ### AutoDownload
193
+
194
+ - **Description:** Downloads videos from YouTube and files from other sources.
195
+ - **Usage:**
196
+
197
+ ```bash
198
+ # Download YouTube video in MP4 format
199
+ ~ ❯ autodownload https://youtube.com/watch?v=example
200
+
201
+ # Download with specific format and quality
202
+ ~ ❯ autodownload https://youtube.com/watch?v=example --format mp3
203
+ ~ ❯ autodownload https://youtube.com/watch?v=example --quality 1080p
204
+ ```
205
+
206
+ - **Options:**
207
+
208
+ - `--format`: Choose output format (mp4 or mp3)
209
+ - `--quality`: Select video quality (best, 1440p, 1080p, 720p, 480p, 360p, 240p)
210
+
211
+ - **Features:**
212
+
213
+ - Automatic bot detection bypass
214
+ - Browser cookie integration
215
+ - Progress tracking
216
+ - Multiple quality options
217
+ - MP3 audio extraction
218
+ - Downloads to user's Downloads folder
219
+ - Supports both YouTube and general file downloads
220
+
221
+ - **Setup Requirements:**
222
+
223
+ - Chrome browser installed and configured:
224
+
225
+ ```bash
226
+ # First time setup:
227
+ 1. Open Chrome and sign in to YouTube
228
+ 2. Make sure you're logged into your Google account
229
+ 3. Accept YouTube's terms of service in browser
230
+ ```
231
+
232
+ - **Troubleshooting:**
233
+
234
+ - If downloads fail with "Sign in to confirm you're not a bot":
235
+
236
+ 1. Open YouTube in Chrome
237
+ 2. Sign in if not already
238
+ 3. Solve any CAPTCHA if prompted
239
+ 4. Try download again
240
+
241
+ - If you get cookie errors:
242
+ 1. Clear Chrome cookies
243
+ 2. Sign in to YouTube again
244
+ 3. Wait a few minutes before downloading
245
+
246
+ - **Technical Requirements:**
247
+ - Chrome browser (for cookie and session handling)
248
+ - Active YouTube/Google account
249
+ - Internet connection
250
+ - Sufficient storage space
251
+ - yt-dlp library (automatically installed)
252
+
253
+ > **Note:** The tool uses your Chrome browser's cookies to authenticate with YouTube. This is required to bypass YouTube's bot detection and download restrictions.
254
+
255
+ ### AutoIP
256
+
257
+ - **Description:** Displays network information including IP addresses, connectivity tests, speed tests, and more.
258
+ - **Usage:**
259
+
260
+ ```bash
261
+ # Display IP addresses
262
+ ~ ❯ autoip
263
+
264
+ # Run speed test
265
+ ~ ❯ autoip --speed
266
+
267
+ # Test connectivity
268
+ ~ ❯ autoip --test
269
+
270
+ # Show location info
271
+ ~ ❯ autoip --location
272
+
273
+ # Monitor network traffic
274
+ ~ ❯ autoip --monitor
275
+
276
+ # Check common ports
277
+ ~ ❯ autoip --ports
278
+
279
+ # Show DNS servers
280
+ ~ ❯ autoip --dns
281
+
282
+ # Hide IP display and only show tests
283
+ ~ ❯ autoip --no-ip --test --speed
284
+ ```
285
+
286
+ - **Options:**
287
+
288
+ - `--test, -t`: Run connectivity tests to popular services
289
+ - `--speed, -s`: Run internet speed test
290
+ - `--monitor, -m`: Monitor real-time network traffic
291
+ - `--ports, -p`: Check status of common ports
292
+ - `--dns, -d`: Show DNS server configuration
293
+ - `--location, -l`: Show IP geolocation information
294
+ - `--no-ip, -n`: Hide IP addresses display
295
+
296
+ - **Features:**
297
+ - Local and public IP detection (IPv4 & IPv6)
298
+ - Internet speed testing
299
+ - Network connectivity checks
300
+ - Real-time traffic monitoring
301
+ - Port scanning
302
+ - DNS server information
303
+ - IP geolocation
304
+
305
+ ## License
306
+
307
+ This project is licensed under the MIT License. For more details, see the [LICENSE](LICENSE) file.
@@ -0,0 +1,34 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ Open_AutoTools.egg-info/PKG-INFO
5
+ Open_AutoTools.egg-info/SOURCES.txt
6
+ Open_AutoTools.egg-info/dependency_links.txt
7
+ Open_AutoTools.egg-info/entry_points.txt
8
+ Open_AutoTools.egg-info/requires.txt
9
+ Open_AutoTools.egg-info/top_level.txt
10
+ autotools/__init__.py
11
+ autotools/cli.py
12
+ autotools/autocaps/__init__.py
13
+ autotools/autocaps/core.py
14
+ autotools/autocaps/tests/__init__.py
15
+ autotools/autocaps/tests/test_autocaps_core.py
16
+ autotools/autocaps/tests/test_autocaps_integration.py
17
+ autotools/autodownload/__init__.py
18
+ autotools/autodownload/core.py
19
+ autotools/autoip/__init__.py
20
+ autotools/autoip/core.py
21
+ autotools/autoip/tests/__init__.py
22
+ autotools/autoip/tests/test_autoip_core.py
23
+ autotools/autoip/tests/test_autoip_integration.py
24
+ autotools/autolower/__init__.py
25
+ autotools/autolower/core.py
26
+ autotools/autolower/tests/__init__.py
27
+ autotools/autolower/tests/test_autolower_core.py
28
+ autotools/autolower/tests/test_autolower_integration.py
29
+ autotools/autopassword/__init__.py
30
+ autotools/autopassword/core.py
31
+ autotools/autospell/__init__.py
32
+ autotools/autospell/core.py
33
+ autotools/autotranslate/__init__.py
34
+ autotools/autotranslate/core.py
@@ -4,5 +4,6 @@ autodownload = autotools.cli:autodownload
4
4
  autoip = autotools.cli:autoip
5
5
  autolower = autotools.cli:autolower
6
6
  autopassword = autotools.cli:autopassword
7
- autotools = autotools.cli:autotools
7
+ autospell = autotools.cli:autospell
8
+ autotools = autotools.cli:cli
8
9
  autotranslate = autotools.cli:autotranslate
@@ -4,14 +4,16 @@ charset-normalizer==3.3.2
4
4
  click==8.1.3
5
5
  cryptography==42.0.2
6
6
  idna==3.6
7
- importlib-metadata==7.0.1
7
+ importlib-metadata>=7.0.1
8
8
  joblib==1.3.2
9
9
  Levenshtein==0.25.0
10
10
  mutagen==1.47.0
11
+ packaging>=23.0
11
12
  platformdirs==4.2.0
12
13
  pycryptodomex==3.20.0
13
14
  pyperclip==1.8.2
14
15
  python-Levenshtein==0.25.0
16
+ python-dotenv>=1.0.0
15
17
  rapidfuzz==3.6.1
16
18
  regex==2023.12.25
17
19
  requests>=2.32.2
@@ -30,3 +32,10 @@ netifaces>=0.11.0
30
32
  speedtest-cli>=2.1.3
31
33
  psutil>=5.9.0
32
34
  setuptools>=40.8.0
35
+ language-tool-python>=2.7.1
36
+ spacy>=3.7.2
37
+ beautifulsoup4>=4.12.0
38
+
39
+ [test]
40
+ pytest>=7.4.0
41
+ pytest-cov>=4.1.0
@@ -0,0 +1,307 @@
1
+ Metadata-Version: 2.2
2
+ Name: Open-AutoTools
3
+ Version: 0.0.3rc1
4
+ Summary: A suite of automated tools accessible via CLI with a simple `autotools` command
5
+ Home-page: https://github.com/BabylooPro/Open-AutoTools
6
+ Author: BabylooPro
7
+ Author-email: maxremy.dev@gmail.com
8
+ Project-URL: Bug Tracker, https://github.com/BabylooPro/Open-AutoTools/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.6
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: Brotli==1.1.0
16
+ Requires-Dist: certifi==2024.2.2
17
+ Requires-Dist: charset-normalizer==3.3.2
18
+ Requires-Dist: click==8.1.3
19
+ Requires-Dist: cryptography==42.0.2
20
+ Requires-Dist: idna==3.6
21
+ Requires-Dist: importlib-metadata>=7.0.1
22
+ Requires-Dist: joblib==1.3.2
23
+ Requires-Dist: Levenshtein==0.25.0
24
+ Requires-Dist: mutagen==1.47.0
25
+ Requires-Dist: packaging>=23.0
26
+ Requires-Dist: platformdirs==4.2.0
27
+ Requires-Dist: pycryptodomex==3.20.0
28
+ Requires-Dist: pyperclip==1.8.2
29
+ Requires-Dist: python-Levenshtein==0.25.0
30
+ Requires-Dist: python-dotenv>=1.0.0
31
+ Requires-Dist: rapidfuzz==3.6.1
32
+ Requires-Dist: regex==2023.12.25
33
+ Requires-Dist: requests>=2.32.2
34
+ Requires-Dist: textblob==0.18.0.post0
35
+ Requires-Dist: tomli==2.0.1
36
+ Requires-Dist: tqdm==4.66.2
37
+ Requires-Dist: urllib3==2.2.1
38
+ Requires-Dist: websockets==13.0.1
39
+ Requires-Dist: yapf==0.40.2
40
+ Requires-Dist: yt-dlp>=2024.3.10
41
+ Requires-Dist: zipp==3.17.0
42
+ Requires-Dist: translate==3.6.1
43
+ Requires-Dist: langdetect==1.0.9
44
+ Requires-Dist: deep-translator==1.11.4
45
+ Requires-Dist: netifaces>=0.11.0
46
+ Requires-Dist: speedtest-cli>=2.1.3
47
+ Requires-Dist: psutil>=5.9.0
48
+ Requires-Dist: setuptools>=40.8.0
49
+ Requires-Dist: language-tool-python>=2.7.1
50
+ Requires-Dist: spacy>=3.7.2
51
+ Requires-Dist: beautifulsoup4>=4.12.0
52
+ Provides-Extra: test
53
+ Requires-Dist: pytest>=7.4.0; extra == "test"
54
+ Requires-Dist: pytest-cov>=4.1.0; extra == "test"
55
+ Dynamic: author
56
+ Dynamic: author-email
57
+ Dynamic: classifier
58
+ Dynamic: description
59
+ Dynamic: description-content-type
60
+ Dynamic: home-page
61
+ Dynamic: project-url
62
+ Dynamic: provides-extra
63
+ Dynamic: requires-dist
64
+ Dynamic: requires-python
65
+ Dynamic: summary
66
+
67
+ # Open-AutoTools
68
+
69
+ Open-AutoTools is an innovative project developed in Python, specifically designed to offer a suite of automated tools directly accessible via the terminal. This project aims to simplify and automate daily tasks for developers and terminal users. It is designed to be used as a set of CLI commands, making its features directly accessible from the user's terminal.
70
+
71
+ https://github.com/BabylooPro/Open-AutoTools/assets/35376790/d57f2b9d-55f8-4368-bb40-c0010eb9d49a
72
+
73
+ ## How to install to use directly
74
+
75
+ To install Open-AutoTools, use the following command in your terminal: `pip install open-autotools`
76
+
77
+ This command installs all the necessary tools to integrate Open-AutoTools into your workflow.
78
+
79
+ You can also find the package on PyPI at: https://pypi.org/project/Open-AutoTools/
80
+
81
+ ## How to develop more features
82
+
83
+ Open-AutoTools is developed using Python 3.11.
84
+
85
+ ```bash
86
+ # Create a virtual environment
87
+ python -m venv venv
88
+
89
+ # Activate virtual environment
90
+ source venv/bin/activate # On macOS/Linux
91
+ venv\Scripts\activate # On Windows
92
+
93
+ # Install project dependencies
94
+ pip install -r requirements.txt
95
+
96
+ # For development, install in editable mode
97
+ pip install -e .
98
+ ```
99
+
100
+ ## Key Features
101
+
102
+ ### AutoCaps
103
+
104
+ - **Description:** Converts any text entered by the user to uppercase.
105
+ - **Usage:**
106
+ ```
107
+ ~ ❯ autocaps "Your text here."
108
+ ```
109
+ - **Output:**
110
+ ```
111
+ YOUR TEXT HERE.
112
+ ```
113
+
114
+ ### AutoLower
115
+
116
+ - **Description:** Converts any text entered by the user to lowercase.
117
+ - **Usage:**
118
+ ```
119
+ ~ ❯ autolower "Your text here."
120
+ ```
121
+ - **Output:**
122
+ ```
123
+ your text here.
124
+ ```
125
+
126
+ ### AutoPassword
127
+
128
+ - **Description:** Generates secure random passwords and encryption keys with customizable options.
129
+ - **Usage:**
130
+ ```
131
+ ~ ❯ autopassword --length 16
132
+ ~ ❯ autopassword --no-special --length 8
133
+ ~ ❯ autopassword --gen-key
134
+ ~ ❯ autopassword --password-key "your-password" --analyze
135
+ ```
136
+ - **Options:**
137
+ - `--length, -l`: Set password length (default: 12)
138
+ - `--no-uppercase`: Exclude uppercase letters
139
+ - `--no-numbers`: Exclude numbers
140
+ - `--no-special`: Exclude special characters
141
+ - `--min-special`: Minimum number of special characters (default: 1)
142
+ - `--min-numbers`: Minimum number of numbers (default: 1)
143
+ - `--gen-key`: Generate a random encryption key
144
+ - `--password-key`: Generate an encryption key from a password
145
+ - `--analyze`: Show password strength analysis
146
+
147
+ These examples demonstrate how the terminal will display the results after executing each command, providing a straightforward way for users to understand the immediate effects of these commands.
148
+
149
+ ### AutoTranslate
150
+
151
+ - **Description:** Translates text between languages with automatic source language detection.
152
+ - **Usage:**
153
+
154
+ ```
155
+ ~ ❯ autotranslate "Bonjour le monde" --to en
156
+ Hello world
157
+
158
+ ~ ❯ autotranslate "Hello world" --to fr --copy
159
+ Bonjour le monde
160
+ // Result also copied to clipboard
161
+
162
+ ~ ❯ autotranslate "こんにちは" --to en --detect
163
+ [Detected: ja] Hello
164
+
165
+ ~ ❯ autotranslate --list-languages
166
+ // Shows all supported languages
167
+ ```
168
+
169
+ - **Options:**
170
+ - `--to`: Target language code (default: en)
171
+ - `--from`: Source language code (default: auto-detect)
172
+ - `--copy`: Copy translation to clipboard
173
+ - `--detect`: Show detected source language
174
+ - `--list-languages`: Show all supported language codes and names
175
+
176
+ ### AutoSpell (unreleased)
177
+
178
+ - **Description:** Checks and corrects spelling in text with multi-language support.
179
+ - **Usage:**
180
+ ```
181
+ ~ ❯ autospell "Your text with misspellings"
182
+ ~ ❯ autospell --lang fr "Votre texte avec des fautes"
183
+ ~ ❯ autospell --file document.txt
184
+ ```
185
+ - **Options:**
186
+ - `--lang`: Language code (default: en)
187
+ - `--file`: Input from file
188
+ - `--copy`: Copy corrected text to clipboard
189
+ - `--suggest`: Show alternative suggestions
190
+ - `--interactive`: Interactive correction mode
191
+
192
+ ### AutoDownload
193
+
194
+ - **Description:** Downloads videos from YouTube and files from other sources.
195
+ - **Usage:**
196
+
197
+ ```bash
198
+ # Download YouTube video in MP4 format
199
+ ~ ❯ autodownload https://youtube.com/watch?v=example
200
+
201
+ # Download with specific format and quality
202
+ ~ ❯ autodownload https://youtube.com/watch?v=example --format mp3
203
+ ~ ❯ autodownload https://youtube.com/watch?v=example --quality 1080p
204
+ ```
205
+
206
+ - **Options:**
207
+
208
+ - `--format`: Choose output format (mp4 or mp3)
209
+ - `--quality`: Select video quality (best, 1440p, 1080p, 720p, 480p, 360p, 240p)
210
+
211
+ - **Features:**
212
+
213
+ - Automatic bot detection bypass
214
+ - Browser cookie integration
215
+ - Progress tracking
216
+ - Multiple quality options
217
+ - MP3 audio extraction
218
+ - Downloads to user's Downloads folder
219
+ - Supports both YouTube and general file downloads
220
+
221
+ - **Setup Requirements:**
222
+
223
+ - Chrome browser installed and configured:
224
+
225
+ ```bash
226
+ # First time setup:
227
+ 1. Open Chrome and sign in to YouTube
228
+ 2. Make sure you're logged into your Google account
229
+ 3. Accept YouTube's terms of service in browser
230
+ ```
231
+
232
+ - **Troubleshooting:**
233
+
234
+ - If downloads fail with "Sign in to confirm you're not a bot":
235
+
236
+ 1. Open YouTube in Chrome
237
+ 2. Sign in if not already
238
+ 3. Solve any CAPTCHA if prompted
239
+ 4. Try download again
240
+
241
+ - If you get cookie errors:
242
+ 1. Clear Chrome cookies
243
+ 2. Sign in to YouTube again
244
+ 3. Wait a few minutes before downloading
245
+
246
+ - **Technical Requirements:**
247
+ - Chrome browser (for cookie and session handling)
248
+ - Active YouTube/Google account
249
+ - Internet connection
250
+ - Sufficient storage space
251
+ - yt-dlp library (automatically installed)
252
+
253
+ > **Note:** The tool uses your Chrome browser's cookies to authenticate with YouTube. This is required to bypass YouTube's bot detection and download restrictions.
254
+
255
+ ### AutoIP
256
+
257
+ - **Description:** Displays network information including IP addresses, connectivity tests, speed tests, and more.
258
+ - **Usage:**
259
+
260
+ ```bash
261
+ # Display IP addresses
262
+ ~ ❯ autoip
263
+
264
+ # Run speed test
265
+ ~ ❯ autoip --speed
266
+
267
+ # Test connectivity
268
+ ~ ❯ autoip --test
269
+
270
+ # Show location info
271
+ ~ ❯ autoip --location
272
+
273
+ # Monitor network traffic
274
+ ~ ❯ autoip --monitor
275
+
276
+ # Check common ports
277
+ ~ ❯ autoip --ports
278
+
279
+ # Show DNS servers
280
+ ~ ❯ autoip --dns
281
+
282
+ # Hide IP display and only show tests
283
+ ~ ❯ autoip --no-ip --test --speed
284
+ ```
285
+
286
+ - **Options:**
287
+
288
+ - `--test, -t`: Run connectivity tests to popular services
289
+ - `--speed, -s`: Run internet speed test
290
+ - `--monitor, -m`: Monitor real-time network traffic
291
+ - `--ports, -p`: Check status of common ports
292
+ - `--dns, -d`: Show DNS server configuration
293
+ - `--location, -l`: Show IP geolocation information
294
+ - `--no-ip, -n`: Hide IP addresses display
295
+
296
+ - **Features:**
297
+ - Local and public IP detection (IPv4 & IPv6)
298
+ - Internet speed testing
299
+ - Network connectivity checks
300
+ - Real-time traffic monitoring
301
+ - Port scanning
302
+ - DNS server information
303
+ - IP geolocation
304
+
305
+ ## License
306
+
307
+ This project is licensed under the MIT License. For more details, see the [LICENSE](LICENSE) file.
@@ -107,6 +107,22 @@ These examples demonstrate how the terminal will display the results after execu
107
107
  - `--detect`: Show detected source language
108
108
  - `--list-languages`: Show all supported language codes and names
109
109
 
110
+ ### AutoSpell (unreleased)
111
+
112
+ - **Description:** Checks and corrects spelling in text with multi-language support.
113
+ - **Usage:**
114
+ ```
115
+ ~ ❯ autospell "Your text with misspellings"
116
+ ~ ❯ autospell --lang fr "Votre texte avec des fautes"
117
+ ~ ❯ autospell --file document.txt
118
+ ```
119
+ - **Options:**
120
+ - `--lang`: Language code (default: en)
121
+ - `--file`: Input from file
122
+ - `--copy`: Copy corrected text to clipboard
123
+ - `--suggest`: Show alternative suggestions
124
+ - `--interactive`: Interactive correction mode
125
+
110
126
  ### AutoDownload
111
127
 
112
128
  - **Description:** Downloads videos from YouTube and files from other sources.
@@ -0,0 +1 @@
1
+ # INIT FILE FOR TESTS