toolify 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.
- {toolify-1.0.0/toolify.egg-info → toolify-1.0.1}/PKG-INFO +54 -13
- {toolify-1.0.0 → toolify-1.0.1}/README.md +42 -1
- {toolify-1.0.0 → toolify-1.0.1}/pyproject.toml +12 -12
- {toolify-1.0.0 → toolify-1.0.1/toolify.egg-info}/PKG-INFO +54 -13
- toolify-1.0.1/toolify.egg-info/requires.txt +20 -0
- toolify-1.0.0/toolify.egg-info/requires.txt +0 -20
- {toolify-1.0.0 → toolify-1.0.1}/LICENSE +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/setup.cfg +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/setup.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/tests/test_ai.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/tests/test_tools.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/tests/test_youtube.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/__init__.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/ai/__init__.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/ai/ai.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/ai/huggingface.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/audio/__init__.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/audio/audio.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/plots/__init__.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/plots/plots.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/tools/__init__.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/tools/constants.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/tools/tools.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/youtube/__init__.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify/youtube/youtube.py +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify.egg-info/SOURCES.txt +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify.egg-info/dependency_links.txt +0 -0
- {toolify-1.0.0 → toolify-1.0.1}/toolify.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: toolify
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Utilities for terminal output, Arabic text, audio, plotting, Hugging Face, and YouTube.
|
|
5
5
|
Author-email: Amr Abdelsamea <amr.abdelsamee33@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -17,17 +17,17 @@ Classifier: Operating System :: OS Independent
|
|
|
17
17
|
Requires-Python: >=3.11
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE
|
|
20
|
-
Requires-Dist: python-bidi
|
|
21
|
-
Requires-Dist: arabic-reshaper
|
|
22
|
-
Requires-Dist: youtube-transcript-api
|
|
23
|
-
Requires-Dist: yt-dlp
|
|
24
|
-
Requires-Dist: tqdm
|
|
25
|
-
Requires-Dist: matplotlib
|
|
26
|
-
Requires-Dist: librosa
|
|
27
|
-
Requires-Dist: numpy
|
|
28
|
-
Requires-Dist: soundfile
|
|
29
|
-
Requires-Dist: huggingface-hub
|
|
30
|
-
Requires-Dist: hf-transfer
|
|
20
|
+
Requires-Dist: python-bidi>=0.6.6
|
|
21
|
+
Requires-Dist: arabic-reshaper>=3.0.0
|
|
22
|
+
Requires-Dist: youtube-transcript-api>=1.1.0
|
|
23
|
+
Requires-Dist: yt-dlp>=2025.10.22
|
|
24
|
+
Requires-Dist: tqdm>=4.67.1
|
|
25
|
+
Requires-Dist: matplotlib>=3.11.0
|
|
26
|
+
Requires-Dist: librosa>=0.11.0
|
|
27
|
+
Requires-Dist: numpy>=1.25
|
|
28
|
+
Requires-Dist: soundfile>=0.14.0
|
|
29
|
+
Requires-Dist: huggingface-hub>=1.21.0
|
|
30
|
+
Requires-Dist: hf-transfer>=0.1.9
|
|
31
31
|
Provides-Extra: dev
|
|
32
32
|
Requires-Dist: pytest; extra == "dev"
|
|
33
33
|
Requires-Dist: build; extra == "dev"
|
|
@@ -37,7 +37,15 @@ Requires-Dist: mkdocs-material; extra == "docs"
|
|
|
37
37
|
Requires-Dist: mkdocstrings[python]; extra == "docs"
|
|
38
38
|
Dynamic: license-file
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
<h1>
|
|
41
|
+
<img
|
|
42
|
+
src="docs/assets/images/toolify-logo.png"
|
|
43
|
+
alt="Toolify logo"
|
|
44
|
+
width="84"
|
|
45
|
+
align="absmiddle"
|
|
46
|
+
>
|
|
47
|
+
Toolify
|
|
48
|
+
</h1>
|
|
41
49
|
|
|
42
50
|
[](https://pypi.org/project/toolify/)
|
|
43
51
|
[](https://pypi.org/project/toolify/)
|
|
@@ -69,6 +77,39 @@ pip install toolify
|
|
|
69
77
|
Python 3.11 or newer is required. FFmpeg is also required when YouTube video
|
|
70
78
|
and audio streams need to be merged.
|
|
71
79
|
|
|
80
|
+
### Install FFmpeg
|
|
81
|
+
|
|
82
|
+
FFmpeg is a system application, not a Python package.
|
|
83
|
+
|
|
84
|
+
#### Windows
|
|
85
|
+
|
|
86
|
+
Install it from PowerShell with Windows Package Manager:
|
|
87
|
+
|
|
88
|
+
```powershell
|
|
89
|
+
winget install --exact --id Gyan.FFmpeg
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Close and reopen the terminal after installation. If `winget` is unavailable,
|
|
93
|
+
download a Windows build from the
|
|
94
|
+
[official FFmpeg download page](https://ffmpeg.org/download.html), extract it,
|
|
95
|
+
and add its `bin` directory to the Windows `PATH`.
|
|
96
|
+
|
|
97
|
+
#### Linux
|
|
98
|
+
|
|
99
|
+
Ubuntu, Debian, and Linux Mint:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
sudo apt update
|
|
103
|
+
sudo apt install ffmpeg
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
Verify the installation on either operating system:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
ffmpeg -version
|
|
111
|
+
```
|
|
112
|
+
|
|
72
113
|
|
|
73
114
|
## Documentation
|
|
74
115
|
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
<h1>
|
|
2
|
+
<img
|
|
3
|
+
src="docs/assets/images/toolify-logo.png"
|
|
4
|
+
alt="Toolify logo"
|
|
5
|
+
width="84"
|
|
6
|
+
align="absmiddle"
|
|
7
|
+
>
|
|
8
|
+
Toolify
|
|
9
|
+
</h1>
|
|
2
10
|
|
|
3
11
|
[](https://pypi.org/project/toolify/)
|
|
4
12
|
[](https://pypi.org/project/toolify/)
|
|
@@ -30,6 +38,39 @@ pip install toolify
|
|
|
30
38
|
Python 3.11 or newer is required. FFmpeg is also required when YouTube video
|
|
31
39
|
and audio streams need to be merged.
|
|
32
40
|
|
|
41
|
+
### Install FFmpeg
|
|
42
|
+
|
|
43
|
+
FFmpeg is a system application, not a Python package.
|
|
44
|
+
|
|
45
|
+
#### Windows
|
|
46
|
+
|
|
47
|
+
Install it from PowerShell with Windows Package Manager:
|
|
48
|
+
|
|
49
|
+
```powershell
|
|
50
|
+
winget install --exact --id Gyan.FFmpeg
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Close and reopen the terminal after installation. If `winget` is unavailable,
|
|
54
|
+
download a Windows build from the
|
|
55
|
+
[official FFmpeg download page](https://ffmpeg.org/download.html), extract it,
|
|
56
|
+
and add its `bin` directory to the Windows `PATH`.
|
|
57
|
+
|
|
58
|
+
#### Linux
|
|
59
|
+
|
|
60
|
+
Ubuntu, Debian, and Linux Mint:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
sudo apt update
|
|
64
|
+
sudo apt install ffmpeg
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
Verify the installation on either operating system:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
ffmpeg -version
|
|
72
|
+
```
|
|
73
|
+
|
|
33
74
|
|
|
34
75
|
## Documentation
|
|
35
76
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "toolify"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.1"
|
|
8
8
|
description = "Utilities for terminal output, Arabic text, audio, plotting, Hugging Face, and YouTube."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -31,17 +31,17 @@ classifiers = [
|
|
|
31
31
|
]
|
|
32
32
|
|
|
33
33
|
dependencies = [
|
|
34
|
-
"python-bidi
|
|
35
|
-
"arabic-reshaper
|
|
36
|
-
"youtube-transcript-api
|
|
37
|
-
"yt-dlp
|
|
38
|
-
"tqdm
|
|
39
|
-
"matplotlib
|
|
40
|
-
"librosa
|
|
41
|
-
"numpy
|
|
42
|
-
"soundfile
|
|
43
|
-
"huggingface-hub
|
|
44
|
-
"hf-transfer
|
|
34
|
+
"python-bidi>=0.6.6",
|
|
35
|
+
"arabic-reshaper>=3.0.0",
|
|
36
|
+
"youtube-transcript-api>=1.1.0",
|
|
37
|
+
"yt-dlp>=2025.10.22",
|
|
38
|
+
"tqdm>=4.67.1",
|
|
39
|
+
"matplotlib>=3.11.0",
|
|
40
|
+
"librosa>=0.11.0",
|
|
41
|
+
"numpy>=1.25",
|
|
42
|
+
"soundfile>=0.14.0",
|
|
43
|
+
"huggingface-hub>=1.21.0",
|
|
44
|
+
"hf-transfer>=0.1.9",
|
|
45
45
|
]
|
|
46
46
|
|
|
47
47
|
[project.optional-dependencies]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: toolify
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Utilities for terminal output, Arabic text, audio, plotting, Hugging Face, and YouTube.
|
|
5
5
|
Author-email: Amr Abdelsamea <amr.abdelsamee33@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -17,17 +17,17 @@ Classifier: Operating System :: OS Independent
|
|
|
17
17
|
Requires-Python: >=3.11
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE
|
|
20
|
-
Requires-Dist: python-bidi
|
|
21
|
-
Requires-Dist: arabic-reshaper
|
|
22
|
-
Requires-Dist: youtube-transcript-api
|
|
23
|
-
Requires-Dist: yt-dlp
|
|
24
|
-
Requires-Dist: tqdm
|
|
25
|
-
Requires-Dist: matplotlib
|
|
26
|
-
Requires-Dist: librosa
|
|
27
|
-
Requires-Dist: numpy
|
|
28
|
-
Requires-Dist: soundfile
|
|
29
|
-
Requires-Dist: huggingface-hub
|
|
30
|
-
Requires-Dist: hf-transfer
|
|
20
|
+
Requires-Dist: python-bidi>=0.6.6
|
|
21
|
+
Requires-Dist: arabic-reshaper>=3.0.0
|
|
22
|
+
Requires-Dist: youtube-transcript-api>=1.1.0
|
|
23
|
+
Requires-Dist: yt-dlp>=2025.10.22
|
|
24
|
+
Requires-Dist: tqdm>=4.67.1
|
|
25
|
+
Requires-Dist: matplotlib>=3.11.0
|
|
26
|
+
Requires-Dist: librosa>=0.11.0
|
|
27
|
+
Requires-Dist: numpy>=1.25
|
|
28
|
+
Requires-Dist: soundfile>=0.14.0
|
|
29
|
+
Requires-Dist: huggingface-hub>=1.21.0
|
|
30
|
+
Requires-Dist: hf-transfer>=0.1.9
|
|
31
31
|
Provides-Extra: dev
|
|
32
32
|
Requires-Dist: pytest; extra == "dev"
|
|
33
33
|
Requires-Dist: build; extra == "dev"
|
|
@@ -37,7 +37,15 @@ Requires-Dist: mkdocs-material; extra == "docs"
|
|
|
37
37
|
Requires-Dist: mkdocstrings[python]; extra == "docs"
|
|
38
38
|
Dynamic: license-file
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
<h1>
|
|
41
|
+
<img
|
|
42
|
+
src="docs/assets/images/toolify-logo.png"
|
|
43
|
+
alt="Toolify logo"
|
|
44
|
+
width="84"
|
|
45
|
+
align="absmiddle"
|
|
46
|
+
>
|
|
47
|
+
Toolify
|
|
48
|
+
</h1>
|
|
41
49
|
|
|
42
50
|
[](https://pypi.org/project/toolify/)
|
|
43
51
|
[](https://pypi.org/project/toolify/)
|
|
@@ -69,6 +77,39 @@ pip install toolify
|
|
|
69
77
|
Python 3.11 or newer is required. FFmpeg is also required when YouTube video
|
|
70
78
|
and audio streams need to be merged.
|
|
71
79
|
|
|
80
|
+
### Install FFmpeg
|
|
81
|
+
|
|
82
|
+
FFmpeg is a system application, not a Python package.
|
|
83
|
+
|
|
84
|
+
#### Windows
|
|
85
|
+
|
|
86
|
+
Install it from PowerShell with Windows Package Manager:
|
|
87
|
+
|
|
88
|
+
```powershell
|
|
89
|
+
winget install --exact --id Gyan.FFmpeg
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Close and reopen the terminal after installation. If `winget` is unavailable,
|
|
93
|
+
download a Windows build from the
|
|
94
|
+
[official FFmpeg download page](https://ffmpeg.org/download.html), extract it,
|
|
95
|
+
and add its `bin` directory to the Windows `PATH`.
|
|
96
|
+
|
|
97
|
+
#### Linux
|
|
98
|
+
|
|
99
|
+
Ubuntu, Debian, and Linux Mint:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
sudo apt update
|
|
103
|
+
sudo apt install ffmpeg
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
Verify the installation on either operating system:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
ffmpeg -version
|
|
111
|
+
```
|
|
112
|
+
|
|
72
113
|
|
|
73
114
|
## Documentation
|
|
74
115
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
python-bidi>=0.6.6
|
|
2
|
+
arabic-reshaper>=3.0.0
|
|
3
|
+
youtube-transcript-api>=1.1.0
|
|
4
|
+
yt-dlp>=2025.10.22
|
|
5
|
+
tqdm>=4.67.1
|
|
6
|
+
matplotlib>=3.11.0
|
|
7
|
+
librosa>=0.11.0
|
|
8
|
+
numpy>=1.25
|
|
9
|
+
soundfile>=0.14.0
|
|
10
|
+
huggingface-hub>=1.21.0
|
|
11
|
+
hf-transfer>=0.1.9
|
|
12
|
+
|
|
13
|
+
[dev]
|
|
14
|
+
pytest
|
|
15
|
+
build
|
|
16
|
+
twine
|
|
17
|
+
|
|
18
|
+
[docs]
|
|
19
|
+
mkdocs-material
|
|
20
|
+
mkdocstrings[python]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
python-bidi==0.6.6
|
|
2
|
-
arabic-reshaper==3.0.0
|
|
3
|
-
youtube-transcript-api==1.1.0
|
|
4
|
-
yt-dlp==2025.10.22
|
|
5
|
-
tqdm==4.67.1
|
|
6
|
-
matplotlib==3.11.0
|
|
7
|
-
librosa==0.11.0
|
|
8
|
-
numpy==2.4.6
|
|
9
|
-
soundfile==0.14.0
|
|
10
|
-
huggingface-hub==1.21.0
|
|
11
|
-
hf-transfer==0.1.9
|
|
12
|
-
|
|
13
|
-
[dev]
|
|
14
|
-
pytest
|
|
15
|
-
build
|
|
16
|
-
twine
|
|
17
|
-
|
|
18
|
-
[docs]
|
|
19
|
-
mkdocs-material
|
|
20
|
-
mkdocstrings[python]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|