tor-dl 1.0.10 → 1.0.12
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.
- package/README.md +35 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,9 +55,9 @@ tor-dl search <query> [options]
|
|
|
55
55
|
|
|
56
56
|
| Source | Categories | Description |
|
|
57
57
|
|--------|------------|-------------|
|
|
58
|
-
|
|
|
59
|
-
|
|
|
60
|
-
|
|
|
58
|
+
| yts | movie | Movie torrents with direct .torrent download |
|
|
59
|
+
| thepiratebay | all | General torrent search |
|
|
60
|
+
| nyaa | anime, tv | Anime and Japanese media |
|
|
61
61
|
|
|
62
62
|
**Examples:**
|
|
63
63
|
|
|
@@ -137,6 +137,38 @@ npm install
|
|
|
137
137
|
npm run build
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
+
## Using with Windows Command Prompt
|
|
141
|
+
|
|
142
|
+
On Windows, if you add the tor-dl installation directory to your PATH environment variable, you can use it directly from the command line without needing to specify the full path each time.
|
|
143
|
+
|
|
144
|
+
### Adding to PATH on Windows
|
|
145
|
+
|
|
146
|
+
1. Press `Win + R`, type `sysdm.cpl`, and press Enter
|
|
147
|
+
2. Go to **Advanced** tab → **Environment Variables**
|
|
148
|
+
3. Under "User variables" or "System variables", find **Path** and click **Edit**
|
|
149
|
+
4. Add the folder where `tor-dl` is installed (e.g., `C:\Users\YourName\AppData\Roaming\npm`)
|
|
150
|
+
5. Click **OK** and restart your command prompt
|
|
151
|
+
|
|
152
|
+
### Quick Search Batch Script
|
|
153
|
+
|
|
154
|
+
Create a batch file (e.g., `search.bat`) in your PATH to quickly search for movies:
|
|
155
|
+
|
|
156
|
+
```batch
|
|
157
|
+
@echo off
|
|
158
|
+
|
|
159
|
+
if "%*"=="" (
|
|
160
|
+
echo Please provide a movie name.
|
|
161
|
+
exit /b
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
tor-dl search "%*" --min-size 700MB --max-size 3GB -s 5
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
**Usage:**
|
|
168
|
+
```bash
|
|
169
|
+
search scream 7
|
|
170
|
+
```
|
|
171
|
+
|
|
140
172
|
## Install Transmission (Windows)
|
|
141
173
|
|
|
142
174
|
For Windows users, you can install Transmission client using winget:
|