idm-cli 0.2.0__tar.gz → 0.2.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.
Potentially problematic release.
This version of idm-cli might be problematic. Click here for more details.
- {idm_cli-0.2.0 → idm_cli-0.2.1}/PKG-INFO +1 -1
- {idm_cli-0.2.0 → idm_cli-0.2.1}/README.md +36 -15
- {idm_cli-0.2.0 → idm_cli-0.2.1}/idm_cli.egg-info/PKG-INFO +1 -1
- {idm_cli-0.2.0 → idm_cli-0.2.1}/setup.py +1 -1
- idm_cli-0.2.1/speedy_dl/__init__.py +2 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/speedy_dl/cli.py +1 -1
- idm_cli-0.2.0/speedy_dl/__init__.py +0 -2
- {idm_cli-0.2.0 → idm_cli-0.2.1}/idm_cli.egg-info/SOURCES.txt +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/idm_cli.egg-info/dependency_links.txt +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/idm_cli.egg-info/entry_points.txt +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/idm_cli.egg-info/requires.txt +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/idm_cli.egg-info/top_level.txt +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/setup.cfg +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/speedy_dl/downloader.py +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/speedy_dl/extractor.py +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/speedy_dl/state.py +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/speedy_dl/ui.py +0 -0
- {idm_cli-0.2.0 → idm_cli-0.2.1}/speedy_dl/updater.py +0 -0
|
@@ -26,23 +26,44 @@
|
|
|
26
26
|
|
|
27
27
|
Ensure you have **Python 3.8+** installed.
|
|
28
28
|
|
|
29
|
-
### 1.
|
|
30
|
-
|
|
31
|
-
cd IDM-Clone-CLI
|
|
32
|
-
```
|
|
29
|
+
### 🌟 1. Global Installation (Recommended via `pipx`)
|
|
30
|
+
For standard users, installing via `pipx` prevents any library conflicts and automatically registers the global commands safely:
|
|
33
31
|
|
|
34
|
-
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
32
|
+
1. **Install pipx globally:**
|
|
33
|
+
```bash
|
|
34
|
+
pip install pipx
|
|
35
|
+
```
|
|
36
|
+
2. **Configure your system path:**
|
|
37
|
+
```bash
|
|
38
|
+
pipx ensurepath
|
|
39
|
+
```
|
|
40
|
+
*(Note: After running `ensurepath`, close and restart your terminal to activate the changes!)*
|
|
39
41
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
3. **Install IDM-CLI globally:**
|
|
43
|
+
```bash
|
|
44
|
+
pipx install idm-cli
|
|
45
|
+
```
|
|
46
|
+
*(This automatically downloads and bundles the lightweight static FFmpeg binary in the background. Zero manual configuration required!)*
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
### 🛠️ 2. Local Developer Installation (From Source)
|
|
51
|
+
If you want to run or modify the codebase locally:
|
|
52
|
+
|
|
53
|
+
1. **Clone the repository:**
|
|
54
|
+
```bash
|
|
55
|
+
git clone https://github.com/rj41-w2/IDM-Clone-CLI.git
|
|
56
|
+
cd IDM-Clone-CLI
|
|
57
|
+
```
|
|
58
|
+
2. **Create and Activate a Virtual Environment:**
|
|
59
|
+
```powershell
|
|
60
|
+
python -m venv .venv
|
|
61
|
+
.venv\Scripts\Activate.ps1
|
|
62
|
+
```
|
|
63
|
+
3. **Install in Editable Mode:**
|
|
64
|
+
```powershell
|
|
65
|
+
pip install -e .
|
|
66
|
+
```
|
|
46
67
|
|
|
47
68
|
---
|
|
48
69
|
|
|
@@ -324,7 +324,7 @@ def interactive_shell():
|
|
|
324
324
|
f"[bold gold1]★ A new version of idm-cli is available![/bold gold1]\n"
|
|
325
325
|
f"[bold white]Local Version:[/bold white] [red]{speedy_dl.__version__}[/red] ➜ "
|
|
326
326
|
f"[bold white]Latest Version:[/bold white] [green]{new_version}[/green]\n"
|
|
327
|
-
f"Run [bold cyan]
|
|
327
|
+
f"Run [bold cyan]pipx upgrade idm-cli[/bold cyan] to update globally!",
|
|
328
328
|
border_style="bold gold1",
|
|
329
329
|
title="[bold gold1]Update Available[/bold gold1]",
|
|
330
330
|
padding=(1, 2)
|
|
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
|