Open-AutoTools 0.0.4rc1__py3-none-any.whl → 0.0.5__py3-none-any.whl
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.
- autotools/autocaps/commands.py +21 -0
- autotools/autocolor/__init__.py +0 -0
- autotools/autocolor/commands.py +60 -0
- autotools/autocolor/core.py +99 -0
- autotools/autoconvert/__init__.py +0 -0
- autotools/autoconvert/commands.py +79 -0
- autotools/autoconvert/conversion/__init__.py +0 -0
- autotools/autoconvert/conversion/convert_audio.py +24 -0
- autotools/autoconvert/conversion/convert_image.py +29 -0
- autotools/autoconvert/conversion/convert_text.py +101 -0
- autotools/autoconvert/conversion/convert_video.py +25 -0
- autotools/autoconvert/core.py +54 -0
- autotools/autoip/commands.py +39 -1
- autotools/autoip/core.py +100 -43
- autotools/autolower/commands.py +21 -0
- autotools/autonote/__init__.py +0 -0
- autotools/autonote/commands.py +70 -0
- autotools/autonote/core.py +106 -0
- autotools/autopassword/commands.py +39 -1
- autotools/autotest/commands.py +43 -12
- autotools/autotodo/__init__.py +87 -0
- autotools/autotodo/commands.py +115 -0
- autotools/autotodo/core.py +567 -0
- autotools/autounit/__init__.py +0 -0
- autotools/autounit/commands.py +55 -0
- autotools/autounit/core.py +36 -0
- autotools/autozip/__init__.py +0 -0
- autotools/autozip/commands.py +88 -0
- autotools/autozip/core.py +107 -0
- autotools/cli.py +66 -62
- autotools/utils/commands.py +141 -10
- autotools/utils/performance.py +67 -35
- autotools/utils/requirements.py +21 -0
- autotools/utils/smoke.py +246 -0
- autotools/utils/text.py +73 -0
- open_autotools-0.0.5.dist-info/METADATA +100 -0
- open_autotools-0.0.5.dist-info/RECORD +54 -0
- {open_autotools-0.0.4rc1.dist-info → open_autotools-0.0.5.dist-info}/WHEEL +1 -1
- open_autotools-0.0.5.dist-info/entry_points.txt +12 -0
- open_autotools-0.0.4rc1.dist-info/METADATA +0 -103
- open_autotools-0.0.4rc1.dist-info/RECORD +0 -28
- open_autotools-0.0.4rc1.dist-info/entry_points.txt +0 -6
- {open_autotools-0.0.4rc1.dist-info → open_autotools-0.0.5.dist-info}/licenses/LICENSE +0 -0
- {open_autotools-0.0.4rc1.dist-info → open_autotools-0.0.5.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
autocaps = autotools.cli:autocaps
|
|
3
|
+
autocolor = autotools.cli:autocolor
|
|
4
|
+
autoconvert = autotools.cli:autoconvert
|
|
5
|
+
autoip = autotools.cli:autoip
|
|
6
|
+
autolower = autotools.cli:autolower
|
|
7
|
+
autonote = autotools.cli:autonote
|
|
8
|
+
autopassword = autotools.cli:autopassword
|
|
9
|
+
autotodo = autotools.cli:autotodo
|
|
10
|
+
autotools = autotools.cli:cli
|
|
11
|
+
autounit = autotools.cli:autounit
|
|
12
|
+
autozip = autotools.cli:autozip
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: Open-AutoTools
|
|
3
|
-
Version: 0.0.4rc1
|
|
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
|
-
License: MIT
|
|
9
|
-
Project-URL: Bug Tracker, https://github.com/BabylooPro/Open-AutoTools/issues
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
-
Classifier: Operating System :: OS Independent
|
|
14
|
-
Requires-Python: >=3.10
|
|
15
|
-
Description-Content-Type: text/markdown
|
|
16
|
-
License-File: LICENSE
|
|
17
|
-
Requires-Dist: build>=1.4.0
|
|
18
|
-
Requires-Dist: wheel>=0.45.1
|
|
19
|
-
Requires-Dist: Brotli==1.1.0
|
|
20
|
-
Requires-Dist: certifi==2024.2.2
|
|
21
|
-
Requires-Dist: charset-normalizer==3.3.2
|
|
22
|
-
Requires-Dist: click==8.1.3
|
|
23
|
-
Requires-Dist: cryptography==42.0.2
|
|
24
|
-
Requires-Dist: halo>=0.0.31
|
|
25
|
-
Requires-Dist: idna==3.6
|
|
26
|
-
Requires-Dist: importlib-metadata>=7.0.1
|
|
27
|
-
Requires-Dist: packaging>=23.0
|
|
28
|
-
Requires-Dist: platformdirs==4.2.0
|
|
29
|
-
Requires-Dist: pycryptodomex==3.20.0
|
|
30
|
-
Requires-Dist: pyperclip==1.8.2
|
|
31
|
-
Requires-Dist: python-dotenv>=1.0.0
|
|
32
|
-
Requires-Dist: requests>=2.32.2
|
|
33
|
-
Requires-Dist: tomli==2.0.1
|
|
34
|
-
Requires-Dist: tqdm==4.66.2
|
|
35
|
-
Requires-Dist: urllib3==2.2.1
|
|
36
|
-
Requires-Dist: websockets==13.0.1
|
|
37
|
-
Requires-Dist: yapf==0.40.2
|
|
38
|
-
Requires-Dist: zipp==3.17.0
|
|
39
|
-
Requires-Dist: netifaces>=0.11.0
|
|
40
|
-
Requires-Dist: speedtest-cli>=2.1.3
|
|
41
|
-
Requires-Dist: psutil>=5.9.0
|
|
42
|
-
Requires-Dist: setuptools>=40.8.0
|
|
43
|
-
Requires-Dist: pytest>=7.4.0
|
|
44
|
-
Requires-Dist: pytest-cov>=4.1.0
|
|
45
|
-
Requires-Dist: pytest-sugar>=1.0.0
|
|
46
|
-
Requires-Dist: pytest-xdist>=3.5.0
|
|
47
|
-
Requires-Dist: pytest-timeout>=2.2.0
|
|
48
|
-
Dynamic: author
|
|
49
|
-
Dynamic: author-email
|
|
50
|
-
Dynamic: classifier
|
|
51
|
-
Dynamic: description
|
|
52
|
-
Dynamic: description-content-type
|
|
53
|
-
Dynamic: home-page
|
|
54
|
-
Dynamic: license
|
|
55
|
-
Dynamic: license-file
|
|
56
|
-
Dynamic: project-url
|
|
57
|
-
Dynamic: requires-dist
|
|
58
|
-
Dynamic: requires-python
|
|
59
|
-
Dynamic: summary
|
|
60
|
-
|
|
61
|
-
# Open-AutoTools
|
|
62
|
-
|
|
63
|
-
[PYPI_BADGE]: https://badge.fury.io/py/Open-AutoTools.svg
|
|
64
|
-
[PYPI_URL]: https://pypi.org/project/Open-AutoTools/
|
|
65
|
-
[PYTHON_BADGE]: https://img.shields.io/badge/Python-3.11-blue.svg
|
|
66
|
-
[PYTHON_URL]: https://www.python.org/downloads/
|
|
67
|
-
[CHANGELOG_BADGE]: https://img.shields.io/badge/CHANGELOG-red.svg
|
|
68
|
-
[CHANGELOG_URL]: CHANGELOG.md
|
|
69
|
-
[TODO_BADGE]: https://img.shields.io/badge/TODO-purple.svg
|
|
70
|
-
[TODO_URL]: TODO.md
|
|
71
|
-
|
|
72
|
-
[![PyPI][PYPI_BADGE]][PYPI_URL] [![Python][PYTHON_BADGE]][PYTHON_URL] [![CHANGELOG][CHANGELOG_BADGE]][CHANGELOG_URL] [![TODO][TODO_BADGE]][TODO_URL]
|
|
73
|
-
|
|
74
|
-
Python CLI toolkit for everyday developer tasks. Boost productivity directly from your terminal.
|
|
75
|
-
|
|
76
|
-
https://github.com/BabylooPro/Open-AutoTools/assets/35376790/d57f2b9d-55f8-4368-bb40-c0010eb9d49a
|
|
77
|
-
|
|
78
|
-
## Quick Install
|
|
79
|
-
|
|
80
|
-
```bash
|
|
81
|
-
pip install open-autotools
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
See [Installation Guide](docs/installation.md) for more details.
|
|
85
|
-
|
|
86
|
-
## Tools
|
|
87
|
-
|
|
88
|
-
- **[AutoCaps](docs/tools/autocaps.md)** - Convert text to uppercase
|
|
89
|
-
- **[AutoLower](docs/tools/autolower.md)** - Convert text to lowercase
|
|
90
|
-
- **[AutoPassword](docs/tools/autopassword.md)** - Generate secure passwords and encryption keys
|
|
91
|
-
- **[AutoIP](docs/tools/autoip.md)** - Display network information and diagnostics
|
|
92
|
-
- **[Test Suite](docs/tools/autotest.md)** - Run the test suite (development only)
|
|
93
|
-
|
|
94
|
-
## Documentation
|
|
95
|
-
|
|
96
|
-
- [Installation](docs/installation.md)
|
|
97
|
-
- [Development](docs/development.md)
|
|
98
|
-
- [Performance](docs/performance.md)
|
|
99
|
-
- [Docker Support](docs/docker.md)
|
|
100
|
-
|
|
101
|
-
## License
|
|
102
|
-
|
|
103
|
-
MIT - see [LICENSE](LICENSE).
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
autotools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
autotools/cli.py,sha256=CeUrfizRtA-G-HbDGP-HHtyUmKmr2Fj4TR-XM1ZdxeM,6122
|
|
3
|
-
autotools/autocaps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
autotools/autocaps/commands.py,sha256=dSsLCmAYtDyk3EudtGw_iLOUbJGMAVDA_kw88sk5v4Y,434
|
|
5
|
-
autotools/autocaps/core.py,sha256=v0VGndr_6LAN7j5eQiUe1dGnP8GMRNsZmOoL-Z5hJbM,259
|
|
6
|
-
autotools/autoip/__init__.py,sha256=T_5hz9G4reFPXDucdzRoMFPYlAKwTPt9TejOpkRPgn0,23
|
|
7
|
-
autotools/autoip/commands.py,sha256=4-SX_a4EHfNIQcskzBuZKCqY30Vxauo34Zh_p2SuuVw,1194
|
|
8
|
-
autotools/autoip/core.py,sha256=8BCzZJaM8CsRFHNi_QZ5kLyZKTXC7WaNPzHvy9BS0Ko,9200
|
|
9
|
-
autotools/autolower/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
autotools/autolower/commands.py,sha256=9bW56LqjMbX2k_ZLHMw1JiM-FuhmLo81558N-WSsN2w,437
|
|
11
|
-
autotools/autolower/core.py,sha256=PLxP9eKoC_NY-ZGPgTxRLxNufv0VGrmOJjjSC_n1zog,259
|
|
12
|
-
autotools/autopassword/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
13
|
-
autotools/autopassword/commands.py,sha256=c2ciHxoG7hEUhlRV5z-7A8GooBx8njtVcQvIPa74U58,3050
|
|
14
|
-
autotools/autopassword/core.py,sha256=xSD4--oqEgnWQD4mlymUfL_qbH_7J8caqfenGCYBXcA,2481
|
|
15
|
-
autotools/autotest/__init__.py,sha256=G4bK86_araxN2j10W8wEX-ol9zXKNhXq8FtPcOj4_p4,55
|
|
16
|
-
autotools/autotest/commands.py,sha256=A2bNZFEhJUWwwtYR8mXolGKVizsvQ9lf03wuyPVFDKM,7557
|
|
17
|
-
autotools/utils/__init__.py,sha256=2uAirI6ZbOwSFPSg5wuEjA0gMWf1XBJ4yP_WcGeND7M,183
|
|
18
|
-
autotools/utils/commands.py,sha256=VEkmaHM7taRfKaU_DJngt9F6aD1zyGJW7t42ojQFpLQ,308
|
|
19
|
-
autotools/utils/loading.py,sha256=yvXQI6FdIJBjRb40R2LTIgDxxNyiv_23p5ixYkQcGtg,752
|
|
20
|
-
autotools/utils/performance.py,sha256=X3yUmCn0xvP9aSI42aDt23XXgE7wcSESHWbEjcpbY3g,16522
|
|
21
|
-
autotools/utils/updates.py,sha256=FrwGGMI9rv-bUrsIpttRnBNXUAOlPpBb85GcYXa_o6A,1447
|
|
22
|
-
autotools/utils/version.py,sha256=ruKZcuLN77yO2x0AwjfyaHlncaHE-8GDzzSIBr-agTc,3082
|
|
23
|
-
open_autotools-0.0.4rc1.dist-info/licenses/LICENSE,sha256=SpbSRxNWos2l0-geleCa6d0L9G_bOsZRkY4rB9OduJ0,1069
|
|
24
|
-
open_autotools-0.0.4rc1.dist-info/METADATA,sha256=FK2uRIzx33-jFWl7o5mfkvIX-c4ZMBD0kwHRr-Em3Cs,3425
|
|
25
|
-
open_autotools-0.0.4rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
26
|
-
open_autotools-0.0.4rc1.dist-info/entry_points.txt,sha256=wmO-wROjqX5-Dr69PWxOD3m5HUueprQp-7jDsU3RMTU,190
|
|
27
|
-
open_autotools-0.0.4rc1.dist-info/top_level.txt,sha256=x5ZRvdQw7DQnVmR0YDqVSAuuS94KTHDmk6uIeW7YOPw,10
|
|
28
|
-
open_autotools-0.0.4rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|