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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: idm-cli
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Requires-Dist: typer[all]>=0.9.0
5
5
  Requires-Dist: httpx>=0.24.0
6
6
  Requires-Dist: rich>=13.0.0
@@ -26,23 +26,44 @@
26
26
 
27
27
  Ensure you have **Python 3.8+** installed.
28
28
 
29
- ### 1. Clone the repository & Navigate
30
- ```bash
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
- ### 2. Create and Activate Virtual Environment
35
- ```powershell
36
- python -m venv .venv
37
- .venv\Scripts\Activate.ps1
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
- ### 3. Install Globally (registers the `idm` command)
41
- To install the tool in editable development mode:
42
- ```powershell
43
- pip install -e .
44
- ```
45
- *(Pip will automatically download the lightweight static FFmpeg binary for your OS in the background. Zero manual installation required!)*
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: idm-cli
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Requires-Dist: typer[all]>=0.9.0
5
5
  Requires-Dist: httpx>=0.24.0
6
6
  Requires-Dist: rich>=13.0.0
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="idm-cli",
5
- version="0.2.0",
5
+ version="0.2.1",
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  "typer[all]>=0.9.0",
@@ -0,0 +1,2 @@
1
+ # speedy_dl Package
2
+ __version__ = "0.2.1"
@@ -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]pip install --upgrade idm-cli[/bold cyan] to update globally!",
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)
@@ -1,2 +0,0 @@
1
- # speedy_dl Package
2
- __version__ = "0.2.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes