Open-AutoTools 0.0.3rc1__tar.gz → 0.0.3rc3__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.
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3/Open_AutoTools.egg-info}/PKG-INFO +58 -67
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/Open_AutoTools.egg-info/SOURCES.txt +14 -1
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/Open_AutoTools.egg-info/requires.txt +2 -0
- {open_autotools-0.0.3rc1/Open_AutoTools.egg-info → open_autotools-0.0.3rc3}/PKG-INFO +58 -67
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/README.md +55 -66
- open_autotools-0.0.3rc3/autotools/autocaps/commands.py +17 -0
- open_autotools-0.0.3rc3/autotools/autodownload/commands.py +38 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autodownload/core.py +149 -50
- open_autotools-0.0.3rc3/autotools/autoip/commands.py +29 -0
- open_autotools-0.0.3rc3/autotools/autolower/commands.py +17 -0
- open_autotools-0.0.3rc3/autotools/autopassword/commands.py +76 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autopassword/core.py +1 -0
- open_autotools-0.0.3rc3/autotools/autospell/commands.py +123 -0
- open_autotools-0.0.3rc3/autotools/autotranslate/commands.py +42 -0
- open_autotools-0.0.3rc3/autotools/cli.py +95 -0
- open_autotools-0.0.3rc3/autotools/test/__init__.py +3 -0
- open_autotools-0.0.3rc3/autotools/test/commands.py +120 -0
- open_autotools-0.0.3rc3/autotools/utils/__init__.py +5 -0
- open_autotools-0.0.3rc3/autotools/utils/loading.py +16 -0
- open_autotools-0.0.3rc3/autotools/utils/updates.py +30 -0
- open_autotools-0.0.3rc3/autotools/utils/version.py +74 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/setup.py +3 -1
- open_autotools-0.0.3rc1/autotools/cli.py +0 -567
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/LICENSE +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/Open_AutoTools.egg-info/dependency_links.txt +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/Open_AutoTools.egg-info/entry_points.txt +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/Open_AutoTools.egg-info/top_level.txt +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autocaps/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autocaps/core.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autocaps/tests/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autocaps/tests/test_autocaps_core.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autocaps/tests/test_autocaps_integration.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autodownload/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autoip/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autoip/core.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autoip/tests/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autoip/tests/test_autoip_core.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autoip/tests/test_autoip_integration.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autolower/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autolower/core.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autolower/tests/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autolower/tests/test_autolower_core.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autolower/tests/test_autolower_integration.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autopassword/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autospell/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autospell/core.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autotranslate/__init__.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/autotools/autotranslate/core.py +0 -0
- {open_autotools-0.0.3rc1 → open_autotools-0.0.3rc3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: Open-AutoTools
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3rc3
|
|
4
4
|
Summary: A suite of automated tools accessible via CLI with a simple `autotools` command
|
|
5
5
|
Home-page: https://github.com/BabylooPro/Open-AutoTools
|
|
6
6
|
Author: BabylooPro
|
|
@@ -49,6 +49,8 @@ Requires-Dist: setuptools>=40.8.0
|
|
|
49
49
|
Requires-Dist: language-tool-python>=2.7.1
|
|
50
50
|
Requires-Dist: spacy>=3.7.2
|
|
51
51
|
Requires-Dist: beautifulsoup4>=4.12.0
|
|
52
|
+
Requires-Dist: halo>=0.0.31
|
|
53
|
+
Requires-Dist: ffmpeg-python>=0.2.0
|
|
52
54
|
Provides-Extra: test
|
|
53
55
|
Requires-Dist: pytest>=7.4.0; extra == "test"
|
|
54
56
|
Requires-Dist: pytest-cov>=4.1.0; extra == "test"
|
|
@@ -66,7 +68,18 @@ Dynamic: summary
|
|
|
66
68
|
|
|
67
69
|
# Open-AutoTools
|
|
68
70
|
|
|
69
|
-
Open-AutoTools
|
|
71
|
+
[PYPI_BADGE]: https://badge.fury.io/py/Open-AutoTools.svg
|
|
72
|
+
[PYPI_URL]: https://pypi.org/project/Open-AutoTools/
|
|
73
|
+
[PYTHON_BADGE]: https://img.shields.io/badge/Python-3.11-blue.svg
|
|
74
|
+
[PYTHON_URL]: https://www.python.org/downloads/
|
|
75
|
+
[CHANGELOG_BADGE]: https://img.shields.io/badge/CHANGELOG-red.svg
|
|
76
|
+
[CHANGELOG_URL]: CHANGELOG.md
|
|
77
|
+
[TODO_BADGE]: https://img.shields.io/badge/TODO-purple.svg
|
|
78
|
+
[TODO_URL]: TODO.md
|
|
79
|
+
|
|
80
|
+
[![PyPI][PYPI_BADGE]][PYPI_URL] [![Python][PYTHON_BADGE]][PYTHON_URL] [![CHANGELOG][CHANGELOG_BADGE]][CHANGELOG_URL] [![TODO][TODO_BADGE]][TODO_URL]
|
|
81
|
+
|
|
82
|
+
Open-AutoTools is a comprehensive Python CLI toolkit that streamlines everyday developer tasks through a collection of powerful command-line utilities. Each tool is designed to enhance productivity directly from your terminal.
|
|
70
83
|
|
|
71
84
|
https://github.com/BabylooPro/Open-AutoTools/assets/35376790/d57f2b9d-55f8-4368-bb40-c0010eb9d49a
|
|
72
85
|
|
|
@@ -135,16 +148,14 @@ pip install -e .
|
|
|
135
148
|
```
|
|
136
149
|
- **Options:**
|
|
137
150
|
- `--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
|
-
- `--
|
|
144
|
-
- `--
|
|
145
|
-
- `--
|
|
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.
|
|
151
|
+
- `--no-uppercase, -u`: Exclude uppercase letters
|
|
152
|
+
- `--no-numbers, -n`: Exclude numbers
|
|
153
|
+
- `--no-special, -s`: Exclude special characters
|
|
154
|
+
- `--min-special, -m`: Minimum number of special characters (default: 1)
|
|
155
|
+
- `--min-numbers, -d`: Minimum number of numbers (default: 1)
|
|
156
|
+
- `--analyze, -a`: Show password strength analysis
|
|
157
|
+
- `--gen-key, -g`: Generate a random encryption key
|
|
158
|
+
- `--password-key, -p`: Generate an encryption key from password
|
|
148
159
|
|
|
149
160
|
### AutoTranslate
|
|
150
161
|
|
|
@@ -172,6 +183,7 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
172
183
|
- `--copy`: Copy translation to clipboard
|
|
173
184
|
- `--detect`: Show detected source language
|
|
174
185
|
- `--list-languages`: Show all supported language codes and names
|
|
186
|
+
- `--output, -o`: Save translation to file
|
|
175
187
|
|
|
176
188
|
### AutoSpell (unreleased)
|
|
177
189
|
|
|
@@ -180,14 +192,17 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
180
192
|
```
|
|
181
193
|
~ ❯ autospell "Your text with misspellings"
|
|
182
194
|
~ ❯ autospell --lang fr "Votre texte avec des fautes"
|
|
183
|
-
~ ❯ autospell --
|
|
195
|
+
~ ❯ autospell --fix "Text to autocorrect"
|
|
184
196
|
```
|
|
185
197
|
- **Options:**
|
|
186
|
-
- `--lang`: Language code (default:
|
|
187
|
-
- `--
|
|
188
|
-
- `--copy`: Copy
|
|
189
|
-
- `--
|
|
190
|
-
- `--
|
|
198
|
+
- `--lang, -l`: Language code (default: auto)
|
|
199
|
+
- `--fix, -f`: Auto-fix text and copy to clipboard
|
|
200
|
+
- `--copy, -c`: Copy result to clipboard
|
|
201
|
+
- `--list-languages`: Show supported languages
|
|
202
|
+
- `--json, -j`: Output results as JSON
|
|
203
|
+
- `--ignore, -i`: Error types to ignore (spelling/grammar/style/punctuation)
|
|
204
|
+
- `--interactive, -n`: Interactive mode - confirm each correction
|
|
205
|
+
- `--output, -o`: Save corrections to file
|
|
191
206
|
|
|
192
207
|
### AutoDownload
|
|
193
208
|
|
|
@@ -205,52 +220,30 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
205
220
|
|
|
206
221
|
- **Options:**
|
|
207
222
|
|
|
208
|
-
- `--format`: Choose output format (mp4 or mp3)
|
|
209
|
-
- `--quality`: Select video quality (best, 1440p, 1080p, 720p, 480p, 360p, 240p)
|
|
223
|
+
- `--format, -f`: Choose output format (mp4 or mp3)
|
|
224
|
+
- `--quality, -q`: Select video quality (best, 1440p, 1080p, 720p, 480p, 360p, 240p)
|
|
210
225
|
|
|
211
226
|
- **Features:**
|
|
212
227
|
|
|
213
228
|
- Automatic bot detection bypass
|
|
214
|
-
-
|
|
215
|
-
- Progress tracking
|
|
229
|
+
- Mobile API integration for better reliability
|
|
230
|
+
- Progress tracking with detailed status
|
|
216
231
|
- Multiple quality options
|
|
217
232
|
- MP3 audio extraction
|
|
218
233
|
- Downloads to user's Downloads folder
|
|
219
234
|
- Supports both YouTube and general file downloads
|
|
235
|
+
- File existence checks with user prompts
|
|
220
236
|
|
|
221
237
|
- **Setup Requirements:**
|
|
222
238
|
|
|
223
|
-
-
|
|
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
|
-
|
|
239
|
+
- No special setup required
|
|
246
240
|
- **Technical Requirements:**
|
|
247
|
-
- Chrome browser (for cookie and session handling)
|
|
248
|
-
- Active YouTube/Google account
|
|
249
241
|
- Internet connection
|
|
250
242
|
- Sufficient storage space
|
|
251
243
|
- yt-dlp library (automatically installed)
|
|
244
|
+
- FFmpeg (required for format conversion)
|
|
252
245
|
|
|
253
|
-
> **Note:** The tool uses
|
|
246
|
+
> **Note:** The tool uses YouTube's mobile API for better compatibility and reliability.
|
|
254
247
|
|
|
255
248
|
### AutoIP
|
|
256
249
|
|
|
@@ -258,28 +251,9 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
258
251
|
- **Usage:**
|
|
259
252
|
|
|
260
253
|
```bash
|
|
261
|
-
# Display IP addresses
|
|
262
254
|
~ ❯ autoip
|
|
263
|
-
|
|
264
|
-
# Run speed test
|
|
265
255
|
~ ❯ autoip --speed
|
|
266
|
-
|
|
267
|
-
# Test connectivity
|
|
268
|
-
~ ❯ autoip --test
|
|
269
|
-
|
|
270
|
-
# Show location info
|
|
271
256
|
~ ❯ 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
257
|
~ ❯ autoip --no-ip --test --speed
|
|
284
258
|
```
|
|
285
259
|
|
|
@@ -288,6 +262,7 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
288
262
|
- `--test, -t`: Run connectivity tests to popular services
|
|
289
263
|
- `--speed, -s`: Run internet speed test
|
|
290
264
|
- `--monitor, -m`: Monitor real-time network traffic
|
|
265
|
+
- `--interval, -i`: Monitoring interval in seconds
|
|
291
266
|
- `--ports, -p`: Check status of common ports
|
|
292
267
|
- `--dns, -d`: Show DNS server configuration
|
|
293
268
|
- `--location, -l`: Show IP geolocation information
|
|
@@ -297,11 +272,27 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
297
272
|
- Local and public IP detection (IPv4 & IPv6)
|
|
298
273
|
- Internet speed testing
|
|
299
274
|
- Network connectivity checks
|
|
275
|
+
- Monitoring interval (10 seconds)
|
|
300
276
|
- Real-time traffic monitoring
|
|
301
277
|
- Port scanning
|
|
302
278
|
- DNS server information
|
|
303
279
|
- IP geolocation
|
|
304
280
|
|
|
281
|
+
### Test Suite (DEVELOPMENT ONLY)
|
|
282
|
+
|
|
283
|
+
- **Description:** Run the test suite for Open-AutoTools
|
|
284
|
+
- **Usage:**
|
|
285
|
+
```bash
|
|
286
|
+
~ ❯ autotools test
|
|
287
|
+
```
|
|
288
|
+
- **Options:**
|
|
289
|
+
|
|
290
|
+
- `--unit, -u`: Run only unit tests
|
|
291
|
+
- `--integration, -i`: Run only integration tests
|
|
292
|
+
- `--no-cov`: Disable coverage report
|
|
293
|
+
- `--html`: Generate HTML coverage report
|
|
294
|
+
- `--module, -m`: Test specific module (e.g., autocaps, autolower)
|
|
295
|
+
|
|
305
296
|
## License
|
|
306
297
|
|
|
307
298
|
This project is licensed under the MIT License. For more details, see the [LICENSE](LICENSE) file.
|
|
@@ -10,25 +10,38 @@ Open_AutoTools.egg-info/top_level.txt
|
|
|
10
10
|
autotools/__init__.py
|
|
11
11
|
autotools/cli.py
|
|
12
12
|
autotools/autocaps/__init__.py
|
|
13
|
+
autotools/autocaps/commands.py
|
|
13
14
|
autotools/autocaps/core.py
|
|
14
15
|
autotools/autocaps/tests/__init__.py
|
|
15
16
|
autotools/autocaps/tests/test_autocaps_core.py
|
|
16
17
|
autotools/autocaps/tests/test_autocaps_integration.py
|
|
17
18
|
autotools/autodownload/__init__.py
|
|
19
|
+
autotools/autodownload/commands.py
|
|
18
20
|
autotools/autodownload/core.py
|
|
19
21
|
autotools/autoip/__init__.py
|
|
22
|
+
autotools/autoip/commands.py
|
|
20
23
|
autotools/autoip/core.py
|
|
21
24
|
autotools/autoip/tests/__init__.py
|
|
22
25
|
autotools/autoip/tests/test_autoip_core.py
|
|
23
26
|
autotools/autoip/tests/test_autoip_integration.py
|
|
24
27
|
autotools/autolower/__init__.py
|
|
28
|
+
autotools/autolower/commands.py
|
|
25
29
|
autotools/autolower/core.py
|
|
26
30
|
autotools/autolower/tests/__init__.py
|
|
27
31
|
autotools/autolower/tests/test_autolower_core.py
|
|
28
32
|
autotools/autolower/tests/test_autolower_integration.py
|
|
29
33
|
autotools/autopassword/__init__.py
|
|
34
|
+
autotools/autopassword/commands.py
|
|
30
35
|
autotools/autopassword/core.py
|
|
31
36
|
autotools/autospell/__init__.py
|
|
37
|
+
autotools/autospell/commands.py
|
|
32
38
|
autotools/autospell/core.py
|
|
33
39
|
autotools/autotranslate/__init__.py
|
|
34
|
-
autotools/autotranslate/
|
|
40
|
+
autotools/autotranslate/commands.py
|
|
41
|
+
autotools/autotranslate/core.py
|
|
42
|
+
autotools/test/__init__.py
|
|
43
|
+
autotools/test/commands.py
|
|
44
|
+
autotools/utils/__init__.py
|
|
45
|
+
autotools/utils/loading.py
|
|
46
|
+
autotools/utils/updates.py
|
|
47
|
+
autotools/utils/version.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: Open-AutoTools
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3rc3
|
|
4
4
|
Summary: A suite of automated tools accessible via CLI with a simple `autotools` command
|
|
5
5
|
Home-page: https://github.com/BabylooPro/Open-AutoTools
|
|
6
6
|
Author: BabylooPro
|
|
@@ -49,6 +49,8 @@ Requires-Dist: setuptools>=40.8.0
|
|
|
49
49
|
Requires-Dist: language-tool-python>=2.7.1
|
|
50
50
|
Requires-Dist: spacy>=3.7.2
|
|
51
51
|
Requires-Dist: beautifulsoup4>=4.12.0
|
|
52
|
+
Requires-Dist: halo>=0.0.31
|
|
53
|
+
Requires-Dist: ffmpeg-python>=0.2.0
|
|
52
54
|
Provides-Extra: test
|
|
53
55
|
Requires-Dist: pytest>=7.4.0; extra == "test"
|
|
54
56
|
Requires-Dist: pytest-cov>=4.1.0; extra == "test"
|
|
@@ -66,7 +68,18 @@ Dynamic: summary
|
|
|
66
68
|
|
|
67
69
|
# Open-AutoTools
|
|
68
70
|
|
|
69
|
-
Open-AutoTools
|
|
71
|
+
[PYPI_BADGE]: https://badge.fury.io/py/Open-AutoTools.svg
|
|
72
|
+
[PYPI_URL]: https://pypi.org/project/Open-AutoTools/
|
|
73
|
+
[PYTHON_BADGE]: https://img.shields.io/badge/Python-3.11-blue.svg
|
|
74
|
+
[PYTHON_URL]: https://www.python.org/downloads/
|
|
75
|
+
[CHANGELOG_BADGE]: https://img.shields.io/badge/CHANGELOG-red.svg
|
|
76
|
+
[CHANGELOG_URL]: CHANGELOG.md
|
|
77
|
+
[TODO_BADGE]: https://img.shields.io/badge/TODO-purple.svg
|
|
78
|
+
[TODO_URL]: TODO.md
|
|
79
|
+
|
|
80
|
+
[![PyPI][PYPI_BADGE]][PYPI_URL] [![Python][PYTHON_BADGE]][PYTHON_URL] [![CHANGELOG][CHANGELOG_BADGE]][CHANGELOG_URL] [![TODO][TODO_BADGE]][TODO_URL]
|
|
81
|
+
|
|
82
|
+
Open-AutoTools is a comprehensive Python CLI toolkit that streamlines everyday developer tasks through a collection of powerful command-line utilities. Each tool is designed to enhance productivity directly from your terminal.
|
|
70
83
|
|
|
71
84
|
https://github.com/BabylooPro/Open-AutoTools/assets/35376790/d57f2b9d-55f8-4368-bb40-c0010eb9d49a
|
|
72
85
|
|
|
@@ -135,16 +148,14 @@ pip install -e .
|
|
|
135
148
|
```
|
|
136
149
|
- **Options:**
|
|
137
150
|
- `--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
|
-
- `--
|
|
144
|
-
- `--
|
|
145
|
-
- `--
|
|
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.
|
|
151
|
+
- `--no-uppercase, -u`: Exclude uppercase letters
|
|
152
|
+
- `--no-numbers, -n`: Exclude numbers
|
|
153
|
+
- `--no-special, -s`: Exclude special characters
|
|
154
|
+
- `--min-special, -m`: Minimum number of special characters (default: 1)
|
|
155
|
+
- `--min-numbers, -d`: Minimum number of numbers (default: 1)
|
|
156
|
+
- `--analyze, -a`: Show password strength analysis
|
|
157
|
+
- `--gen-key, -g`: Generate a random encryption key
|
|
158
|
+
- `--password-key, -p`: Generate an encryption key from password
|
|
148
159
|
|
|
149
160
|
### AutoTranslate
|
|
150
161
|
|
|
@@ -172,6 +183,7 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
172
183
|
- `--copy`: Copy translation to clipboard
|
|
173
184
|
- `--detect`: Show detected source language
|
|
174
185
|
- `--list-languages`: Show all supported language codes and names
|
|
186
|
+
- `--output, -o`: Save translation to file
|
|
175
187
|
|
|
176
188
|
### AutoSpell (unreleased)
|
|
177
189
|
|
|
@@ -180,14 +192,17 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
180
192
|
```
|
|
181
193
|
~ ❯ autospell "Your text with misspellings"
|
|
182
194
|
~ ❯ autospell --lang fr "Votre texte avec des fautes"
|
|
183
|
-
~ ❯ autospell --
|
|
195
|
+
~ ❯ autospell --fix "Text to autocorrect"
|
|
184
196
|
```
|
|
185
197
|
- **Options:**
|
|
186
|
-
- `--lang`: Language code (default:
|
|
187
|
-
- `--
|
|
188
|
-
- `--copy`: Copy
|
|
189
|
-
- `--
|
|
190
|
-
- `--
|
|
198
|
+
- `--lang, -l`: Language code (default: auto)
|
|
199
|
+
- `--fix, -f`: Auto-fix text and copy to clipboard
|
|
200
|
+
- `--copy, -c`: Copy result to clipboard
|
|
201
|
+
- `--list-languages`: Show supported languages
|
|
202
|
+
- `--json, -j`: Output results as JSON
|
|
203
|
+
- `--ignore, -i`: Error types to ignore (spelling/grammar/style/punctuation)
|
|
204
|
+
- `--interactive, -n`: Interactive mode - confirm each correction
|
|
205
|
+
- `--output, -o`: Save corrections to file
|
|
191
206
|
|
|
192
207
|
### AutoDownload
|
|
193
208
|
|
|
@@ -205,52 +220,30 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
205
220
|
|
|
206
221
|
- **Options:**
|
|
207
222
|
|
|
208
|
-
- `--format`: Choose output format (mp4 or mp3)
|
|
209
|
-
- `--quality`: Select video quality (best, 1440p, 1080p, 720p, 480p, 360p, 240p)
|
|
223
|
+
- `--format, -f`: Choose output format (mp4 or mp3)
|
|
224
|
+
- `--quality, -q`: Select video quality (best, 1440p, 1080p, 720p, 480p, 360p, 240p)
|
|
210
225
|
|
|
211
226
|
- **Features:**
|
|
212
227
|
|
|
213
228
|
- Automatic bot detection bypass
|
|
214
|
-
-
|
|
215
|
-
- Progress tracking
|
|
229
|
+
- Mobile API integration for better reliability
|
|
230
|
+
- Progress tracking with detailed status
|
|
216
231
|
- Multiple quality options
|
|
217
232
|
- MP3 audio extraction
|
|
218
233
|
- Downloads to user's Downloads folder
|
|
219
234
|
- Supports both YouTube and general file downloads
|
|
235
|
+
- File existence checks with user prompts
|
|
220
236
|
|
|
221
237
|
- **Setup Requirements:**
|
|
222
238
|
|
|
223
|
-
-
|
|
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
|
-
|
|
239
|
+
- No special setup required
|
|
246
240
|
- **Technical Requirements:**
|
|
247
|
-
- Chrome browser (for cookie and session handling)
|
|
248
|
-
- Active YouTube/Google account
|
|
249
241
|
- Internet connection
|
|
250
242
|
- Sufficient storage space
|
|
251
243
|
- yt-dlp library (automatically installed)
|
|
244
|
+
- FFmpeg (required for format conversion)
|
|
252
245
|
|
|
253
|
-
> **Note:** The tool uses
|
|
246
|
+
> **Note:** The tool uses YouTube's mobile API for better compatibility and reliability.
|
|
254
247
|
|
|
255
248
|
### AutoIP
|
|
256
249
|
|
|
@@ -258,28 +251,9 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
258
251
|
- **Usage:**
|
|
259
252
|
|
|
260
253
|
```bash
|
|
261
|
-
# Display IP addresses
|
|
262
254
|
~ ❯ autoip
|
|
263
|
-
|
|
264
|
-
# Run speed test
|
|
265
255
|
~ ❯ autoip --speed
|
|
266
|
-
|
|
267
|
-
# Test connectivity
|
|
268
|
-
~ ❯ autoip --test
|
|
269
|
-
|
|
270
|
-
# Show location info
|
|
271
256
|
~ ❯ 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
257
|
~ ❯ autoip --no-ip --test --speed
|
|
284
258
|
```
|
|
285
259
|
|
|
@@ -288,6 +262,7 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
288
262
|
- `--test, -t`: Run connectivity tests to popular services
|
|
289
263
|
- `--speed, -s`: Run internet speed test
|
|
290
264
|
- `--monitor, -m`: Monitor real-time network traffic
|
|
265
|
+
- `--interval, -i`: Monitoring interval in seconds
|
|
291
266
|
- `--ports, -p`: Check status of common ports
|
|
292
267
|
- `--dns, -d`: Show DNS server configuration
|
|
293
268
|
- `--location, -l`: Show IP geolocation information
|
|
@@ -297,11 +272,27 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
297
272
|
- Local and public IP detection (IPv4 & IPv6)
|
|
298
273
|
- Internet speed testing
|
|
299
274
|
- Network connectivity checks
|
|
275
|
+
- Monitoring interval (10 seconds)
|
|
300
276
|
- Real-time traffic monitoring
|
|
301
277
|
- Port scanning
|
|
302
278
|
- DNS server information
|
|
303
279
|
- IP geolocation
|
|
304
280
|
|
|
281
|
+
### Test Suite (DEVELOPMENT ONLY)
|
|
282
|
+
|
|
283
|
+
- **Description:** Run the test suite for Open-AutoTools
|
|
284
|
+
- **Usage:**
|
|
285
|
+
```bash
|
|
286
|
+
~ ❯ autotools test
|
|
287
|
+
```
|
|
288
|
+
- **Options:**
|
|
289
|
+
|
|
290
|
+
- `--unit, -u`: Run only unit tests
|
|
291
|
+
- `--integration, -i`: Run only integration tests
|
|
292
|
+
- `--no-cov`: Disable coverage report
|
|
293
|
+
- `--html`: Generate HTML coverage report
|
|
294
|
+
- `--module, -m`: Test specific module (e.g., autocaps, autolower)
|
|
295
|
+
|
|
305
296
|
## License
|
|
306
297
|
|
|
307
298
|
This project is licensed under the MIT License. For more details, see the [LICENSE](LICENSE) file.
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
# Open-AutoTools
|
|
2
2
|
|
|
3
|
-
Open-AutoTools
|
|
3
|
+
[PYPI_BADGE]: https://badge.fury.io/py/Open-AutoTools.svg
|
|
4
|
+
[PYPI_URL]: https://pypi.org/project/Open-AutoTools/
|
|
5
|
+
[PYTHON_BADGE]: https://img.shields.io/badge/Python-3.11-blue.svg
|
|
6
|
+
[PYTHON_URL]: https://www.python.org/downloads/
|
|
7
|
+
[CHANGELOG_BADGE]: https://img.shields.io/badge/CHANGELOG-red.svg
|
|
8
|
+
[CHANGELOG_URL]: CHANGELOG.md
|
|
9
|
+
[TODO_BADGE]: https://img.shields.io/badge/TODO-purple.svg
|
|
10
|
+
[TODO_URL]: TODO.md
|
|
11
|
+
|
|
12
|
+
[![PyPI][PYPI_BADGE]][PYPI_URL] [![Python][PYTHON_BADGE]][PYTHON_URL] [![CHANGELOG][CHANGELOG_BADGE]][CHANGELOG_URL] [![TODO][TODO_BADGE]][TODO_URL]
|
|
13
|
+
|
|
14
|
+
Open-AutoTools is a comprehensive Python CLI toolkit that streamlines everyday developer tasks through a collection of powerful command-line utilities. Each tool is designed to enhance productivity directly from your terminal.
|
|
4
15
|
|
|
5
16
|
https://github.com/BabylooPro/Open-AutoTools/assets/35376790/d57f2b9d-55f8-4368-bb40-c0010eb9d49a
|
|
6
17
|
|
|
@@ -69,16 +80,14 @@ pip install -e .
|
|
|
69
80
|
```
|
|
70
81
|
- **Options:**
|
|
71
82
|
- `--length, -l`: Set password length (default: 12)
|
|
72
|
-
- `--no-uppercase`: Exclude uppercase letters
|
|
73
|
-
- `--no-numbers`: Exclude numbers
|
|
74
|
-
- `--no-special`: Exclude special characters
|
|
75
|
-
- `--min-special`: Minimum number of special characters (default: 1)
|
|
76
|
-
- `--min-numbers`: Minimum number of numbers (default: 1)
|
|
77
|
-
- `--
|
|
78
|
-
- `--
|
|
79
|
-
- `--
|
|
80
|
-
|
|
81
|
-
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.
|
|
83
|
+
- `--no-uppercase, -u`: Exclude uppercase letters
|
|
84
|
+
- `--no-numbers, -n`: Exclude numbers
|
|
85
|
+
- `--no-special, -s`: Exclude special characters
|
|
86
|
+
- `--min-special, -m`: Minimum number of special characters (default: 1)
|
|
87
|
+
- `--min-numbers, -d`: Minimum number of numbers (default: 1)
|
|
88
|
+
- `--analyze, -a`: Show password strength analysis
|
|
89
|
+
- `--gen-key, -g`: Generate a random encryption key
|
|
90
|
+
- `--password-key, -p`: Generate an encryption key from password
|
|
82
91
|
|
|
83
92
|
### AutoTranslate
|
|
84
93
|
|
|
@@ -106,6 +115,7 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
106
115
|
- `--copy`: Copy translation to clipboard
|
|
107
116
|
- `--detect`: Show detected source language
|
|
108
117
|
- `--list-languages`: Show all supported language codes and names
|
|
118
|
+
- `--output, -o`: Save translation to file
|
|
109
119
|
|
|
110
120
|
### AutoSpell (unreleased)
|
|
111
121
|
|
|
@@ -114,14 +124,17 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
114
124
|
```
|
|
115
125
|
~ ❯ autospell "Your text with misspellings"
|
|
116
126
|
~ ❯ autospell --lang fr "Votre texte avec des fautes"
|
|
117
|
-
~ ❯ autospell --
|
|
127
|
+
~ ❯ autospell --fix "Text to autocorrect"
|
|
118
128
|
```
|
|
119
129
|
- **Options:**
|
|
120
|
-
- `--lang`: Language code (default:
|
|
121
|
-
- `--
|
|
122
|
-
- `--copy`: Copy
|
|
123
|
-
- `--
|
|
124
|
-
- `--
|
|
130
|
+
- `--lang, -l`: Language code (default: auto)
|
|
131
|
+
- `--fix, -f`: Auto-fix text and copy to clipboard
|
|
132
|
+
- `--copy, -c`: Copy result to clipboard
|
|
133
|
+
- `--list-languages`: Show supported languages
|
|
134
|
+
- `--json, -j`: Output results as JSON
|
|
135
|
+
- `--ignore, -i`: Error types to ignore (spelling/grammar/style/punctuation)
|
|
136
|
+
- `--interactive, -n`: Interactive mode - confirm each correction
|
|
137
|
+
- `--output, -o`: Save corrections to file
|
|
125
138
|
|
|
126
139
|
### AutoDownload
|
|
127
140
|
|
|
@@ -139,52 +152,30 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
139
152
|
|
|
140
153
|
- **Options:**
|
|
141
154
|
|
|
142
|
-
- `--format`: Choose output format (mp4 or mp3)
|
|
143
|
-
- `--quality`: Select video quality (best, 1440p, 1080p, 720p, 480p, 360p, 240p)
|
|
155
|
+
- `--format, -f`: Choose output format (mp4 or mp3)
|
|
156
|
+
- `--quality, -q`: Select video quality (best, 1440p, 1080p, 720p, 480p, 360p, 240p)
|
|
144
157
|
|
|
145
158
|
- **Features:**
|
|
146
159
|
|
|
147
160
|
- Automatic bot detection bypass
|
|
148
|
-
-
|
|
149
|
-
- Progress tracking
|
|
161
|
+
- Mobile API integration for better reliability
|
|
162
|
+
- Progress tracking with detailed status
|
|
150
163
|
- Multiple quality options
|
|
151
164
|
- MP3 audio extraction
|
|
152
165
|
- Downloads to user's Downloads folder
|
|
153
166
|
- Supports both YouTube and general file downloads
|
|
167
|
+
- File existence checks with user prompts
|
|
154
168
|
|
|
155
169
|
- **Setup Requirements:**
|
|
156
170
|
|
|
157
|
-
-
|
|
158
|
-
|
|
159
|
-
```bash
|
|
160
|
-
# First time setup:
|
|
161
|
-
1. Open Chrome and sign in to YouTube
|
|
162
|
-
2. Make sure you're logged into your Google account
|
|
163
|
-
3. Accept YouTube's terms of service in browser
|
|
164
|
-
```
|
|
165
|
-
|
|
166
|
-
- **Troubleshooting:**
|
|
167
|
-
|
|
168
|
-
- If downloads fail with "Sign in to confirm you're not a bot":
|
|
169
|
-
|
|
170
|
-
1. Open YouTube in Chrome
|
|
171
|
-
2. Sign in if not already
|
|
172
|
-
3. Solve any CAPTCHA if prompted
|
|
173
|
-
4. Try download again
|
|
174
|
-
|
|
175
|
-
- If you get cookie errors:
|
|
176
|
-
1. Clear Chrome cookies
|
|
177
|
-
2. Sign in to YouTube again
|
|
178
|
-
3. Wait a few minutes before downloading
|
|
179
|
-
|
|
171
|
+
- No special setup required
|
|
180
172
|
- **Technical Requirements:**
|
|
181
|
-
- Chrome browser (for cookie and session handling)
|
|
182
|
-
- Active YouTube/Google account
|
|
183
173
|
- Internet connection
|
|
184
174
|
- Sufficient storage space
|
|
185
175
|
- yt-dlp library (automatically installed)
|
|
176
|
+
- FFmpeg (required for format conversion)
|
|
186
177
|
|
|
187
|
-
> **Note:** The tool uses
|
|
178
|
+
> **Note:** The tool uses YouTube's mobile API for better compatibility and reliability.
|
|
188
179
|
|
|
189
180
|
### AutoIP
|
|
190
181
|
|
|
@@ -192,28 +183,9 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
192
183
|
- **Usage:**
|
|
193
184
|
|
|
194
185
|
```bash
|
|
195
|
-
# Display IP addresses
|
|
196
186
|
~ ❯ autoip
|
|
197
|
-
|
|
198
|
-
# Run speed test
|
|
199
187
|
~ ❯ autoip --speed
|
|
200
|
-
|
|
201
|
-
# Test connectivity
|
|
202
|
-
~ ❯ autoip --test
|
|
203
|
-
|
|
204
|
-
# Show location info
|
|
205
188
|
~ ❯ autoip --location
|
|
206
|
-
|
|
207
|
-
# Monitor network traffic
|
|
208
|
-
~ ❯ autoip --monitor
|
|
209
|
-
|
|
210
|
-
# Check common ports
|
|
211
|
-
~ ❯ autoip --ports
|
|
212
|
-
|
|
213
|
-
# Show DNS servers
|
|
214
|
-
~ ❯ autoip --dns
|
|
215
|
-
|
|
216
|
-
# Hide IP display and only show tests
|
|
217
189
|
~ ❯ autoip --no-ip --test --speed
|
|
218
190
|
```
|
|
219
191
|
|
|
@@ -222,6 +194,7 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
222
194
|
- `--test, -t`: Run connectivity tests to popular services
|
|
223
195
|
- `--speed, -s`: Run internet speed test
|
|
224
196
|
- `--monitor, -m`: Monitor real-time network traffic
|
|
197
|
+
- `--interval, -i`: Monitoring interval in seconds
|
|
225
198
|
- `--ports, -p`: Check status of common ports
|
|
226
199
|
- `--dns, -d`: Show DNS server configuration
|
|
227
200
|
- `--location, -l`: Show IP geolocation information
|
|
@@ -231,11 +204,27 @@ These examples demonstrate how the terminal will display the results after execu
|
|
|
231
204
|
- Local and public IP detection (IPv4 & IPv6)
|
|
232
205
|
- Internet speed testing
|
|
233
206
|
- Network connectivity checks
|
|
207
|
+
- Monitoring interval (10 seconds)
|
|
234
208
|
- Real-time traffic monitoring
|
|
235
209
|
- Port scanning
|
|
236
210
|
- DNS server information
|
|
237
211
|
- IP geolocation
|
|
238
212
|
|
|
213
|
+
### Test Suite (DEVELOPMENT ONLY)
|
|
214
|
+
|
|
215
|
+
- **Description:** Run the test suite for Open-AutoTools
|
|
216
|
+
- **Usage:**
|
|
217
|
+
```bash
|
|
218
|
+
~ ❯ autotools test
|
|
219
|
+
```
|
|
220
|
+
- **Options:**
|
|
221
|
+
|
|
222
|
+
- `--unit, -u`: Run only unit tests
|
|
223
|
+
- `--integration, -i`: Run only integration tests
|
|
224
|
+
- `--no-cov`: Disable coverage report
|
|
225
|
+
- `--html`: Generate HTML coverage report
|
|
226
|
+
- `--module, -m`: Test specific module (e.g., autocaps, autolower)
|
|
227
|
+
|
|
239
228
|
## License
|
|
240
229
|
|
|
241
230
|
This project is licensed under the MIT License. For more details, see the [LICENSE](LICENSE) file.
|