torrent-downloader-react 1.1.3__tar.gz → 1.1.4__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- torrent-downloader-react-1.1.4/PKG-INFO +114 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/setup.py +1 -1
- torrent-downloader-react-1.1.4/torrent_downloader_react.egg-info/PKG-INFO +114 -0
- torrent-downloader-react-1.1.3/PKG-INFO +0 -164
- torrent-downloader-react-1.1.3/torrent_downloader_react.egg-info/PKG-INFO +0 -164
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/setup.cfg +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/__init__.py +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/server.py +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/static/assets/index-BAUKkMK0.js +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/static/assets/index-DpeprjRI.css +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/static/index.html +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/static/vite.svg +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader_react.egg-info/SOURCES.txt +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader_react.egg-info/dependency_links.txt +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader_react.egg-info/entry_points.txt +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader_react.egg-info/requires.txt +0 -0
- {torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader_react.egg-info/top_level.txt +0 -0
@@ -0,0 +1,114 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: torrent-downloader-react
|
3
|
+
Version: 1.1.4
|
4
|
+
Summary: A modern, user-friendly torrent downloader application
|
5
|
+
Home-page: https://github.com/stevenbtc/torrent-downloader
|
6
|
+
Author: Steven Yan
|
7
|
+
Author-email: yulong.yan@uqconnect.edu.au
|
8
|
+
Project-URL: Bug Tracker, https://github.com/stevenbtc/torrent-downloader/issues
|
9
|
+
Project-URL: Documentation, https://github.com/stevenbtc/torrent-downloader#readme
|
10
|
+
Project-URL: Source Code, https://github.com/stevenbtc/torrent-downloader
|
11
|
+
Keywords: torrent,downloader,p2p,bittorrent,libtorrent
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
13
|
+
Classifier: Environment :: Web Environment
|
14
|
+
Classifier: Framework :: FastAPI
|
15
|
+
Classifier: Intended Audience :: End Users/Desktop
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
17
|
+
Classifier: Operating System :: OS Independent
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
19
|
+
Classifier: Programming Language :: Python :: 3.8
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
23
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
24
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
25
|
+
Requires-Python: >=3.8
|
26
|
+
Description-Content-Type: text/markdown
|
27
|
+
|
28
|
+
# Torrent Downloader Web App
|
29
|
+
|
30
|
+
A modern, full-featured torrent downloader with a clean React interface and Python backend.
|
31
|
+
|
32
|
+
## Quick Start
|
33
|
+
|
34
|
+
```bash
|
35
|
+
pip install torrent-downloader-react
|
36
|
+
torrent-downloader-react # Opens in browser at http://127.0.0.1:8000
|
37
|
+
```
|
38
|
+
|
39
|
+
## System Requirements
|
40
|
+
|
41
|
+
- Python 3.8+
|
42
|
+
- Platform-specific dependencies:
|
43
|
+
- **Windows**: Microsoft Visual C++ Redistributable
|
44
|
+
- **macOS**: `brew install libtorrent-rasterbar`
|
45
|
+
- **Ubuntu/Debian**: `sudo apt-get install python3-libtorrent`
|
46
|
+
- **Fedora**: `sudo dnf install rb_libtorrent-python3`
|
47
|
+
|
48
|
+
## Features
|
49
|
+
|
50
|
+
- Modern, responsive UI with dark mode
|
51
|
+
- Real-time download progress monitoring
|
52
|
+
- Download speed and ETA tracking
|
53
|
+
- Easy magnet link handling
|
54
|
+
- Cross-platform support
|
55
|
+
- Concurrent downloads
|
56
|
+
|
57
|
+
## Usage
|
58
|
+
|
59
|
+
1. Start the application:
|
60
|
+
```bash
|
61
|
+
torrent-downloader-react
|
62
|
+
```
|
63
|
+
2. Open your browser at http://127.0.0.1:8000
|
64
|
+
3. Paste a magnet link and click "Add Torrent"
|
65
|
+
4. Monitor progress in the downloads list
|
66
|
+
5. Access completed downloads in your downloads folder
|
67
|
+
|
68
|
+
## Alternative Installation: Using Conda
|
69
|
+
|
70
|
+
```bash
|
71
|
+
conda create -n torrent-env python=3.11
|
72
|
+
conda activate torrent-env
|
73
|
+
conda install -c conda-forge libtorrent
|
74
|
+
pip install torrent-downloader-react
|
75
|
+
```
|
76
|
+
|
77
|
+
## Development
|
78
|
+
|
79
|
+
### Frontend (React)
|
80
|
+
```bash
|
81
|
+
# Install dependencies
|
82
|
+
cd torrent-downloader-react
|
83
|
+
npm install
|
84
|
+
|
85
|
+
# Start development server
|
86
|
+
npm run dev
|
87
|
+
```
|
88
|
+
|
89
|
+
### Backend (Python)
|
90
|
+
```bash
|
91
|
+
# Install dependencies
|
92
|
+
cd torrent-downloader-react/backend
|
93
|
+
pip install -r requirements.txt
|
94
|
+
|
95
|
+
# Start development server
|
96
|
+
python -m torrent_downloader.server
|
97
|
+
```
|
98
|
+
|
99
|
+
## API Documentation
|
100
|
+
|
101
|
+
The backend provides a RESTful API:
|
102
|
+
|
103
|
+
- `GET /api/torrents` - List all torrents
|
104
|
+
- `POST /api/torrents` - Add new torrent
|
105
|
+
- `DELETE /api/torrents/{id}` - Remove torrent
|
106
|
+
- `GET /api/torrents/{id}/status` - Get torrent status
|
107
|
+
|
108
|
+
## License
|
109
|
+
|
110
|
+
MIT License - See LICENSE file for details.
|
111
|
+
|
112
|
+
## Legal Notice
|
113
|
+
|
114
|
+
This software is intended for downloading legal torrents only. Users are responsible for compliance with applicable laws.
|
@@ -0,0 +1,114 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: torrent-downloader-react
|
3
|
+
Version: 1.1.4
|
4
|
+
Summary: A modern, user-friendly torrent downloader application
|
5
|
+
Home-page: https://github.com/stevenbtc/torrent-downloader
|
6
|
+
Author: Steven Yan
|
7
|
+
Author-email: yulong.yan@uqconnect.edu.au
|
8
|
+
Project-URL: Bug Tracker, https://github.com/stevenbtc/torrent-downloader/issues
|
9
|
+
Project-URL: Documentation, https://github.com/stevenbtc/torrent-downloader#readme
|
10
|
+
Project-URL: Source Code, https://github.com/stevenbtc/torrent-downloader
|
11
|
+
Keywords: torrent,downloader,p2p,bittorrent,libtorrent
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
13
|
+
Classifier: Environment :: Web Environment
|
14
|
+
Classifier: Framework :: FastAPI
|
15
|
+
Classifier: Intended Audience :: End Users/Desktop
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
17
|
+
Classifier: Operating System :: OS Independent
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
19
|
+
Classifier: Programming Language :: Python :: 3.8
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
23
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
24
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
25
|
+
Requires-Python: >=3.8
|
26
|
+
Description-Content-Type: text/markdown
|
27
|
+
|
28
|
+
# Torrent Downloader Web App
|
29
|
+
|
30
|
+
A modern, full-featured torrent downloader with a clean React interface and Python backend.
|
31
|
+
|
32
|
+
## Quick Start
|
33
|
+
|
34
|
+
```bash
|
35
|
+
pip install torrent-downloader-react
|
36
|
+
torrent-downloader-react # Opens in browser at http://127.0.0.1:8000
|
37
|
+
```
|
38
|
+
|
39
|
+
## System Requirements
|
40
|
+
|
41
|
+
- Python 3.8+
|
42
|
+
- Platform-specific dependencies:
|
43
|
+
- **Windows**: Microsoft Visual C++ Redistributable
|
44
|
+
- **macOS**: `brew install libtorrent-rasterbar`
|
45
|
+
- **Ubuntu/Debian**: `sudo apt-get install python3-libtorrent`
|
46
|
+
- **Fedora**: `sudo dnf install rb_libtorrent-python3`
|
47
|
+
|
48
|
+
## Features
|
49
|
+
|
50
|
+
- Modern, responsive UI with dark mode
|
51
|
+
- Real-time download progress monitoring
|
52
|
+
- Download speed and ETA tracking
|
53
|
+
- Easy magnet link handling
|
54
|
+
- Cross-platform support
|
55
|
+
- Concurrent downloads
|
56
|
+
|
57
|
+
## Usage
|
58
|
+
|
59
|
+
1. Start the application:
|
60
|
+
```bash
|
61
|
+
torrent-downloader-react
|
62
|
+
```
|
63
|
+
2. Open your browser at http://127.0.0.1:8000
|
64
|
+
3. Paste a magnet link and click "Add Torrent"
|
65
|
+
4. Monitor progress in the downloads list
|
66
|
+
5. Access completed downloads in your downloads folder
|
67
|
+
|
68
|
+
## Alternative Installation: Using Conda
|
69
|
+
|
70
|
+
```bash
|
71
|
+
conda create -n torrent-env python=3.11
|
72
|
+
conda activate torrent-env
|
73
|
+
conda install -c conda-forge libtorrent
|
74
|
+
pip install torrent-downloader-react
|
75
|
+
```
|
76
|
+
|
77
|
+
## Development
|
78
|
+
|
79
|
+
### Frontend (React)
|
80
|
+
```bash
|
81
|
+
# Install dependencies
|
82
|
+
cd torrent-downloader-react
|
83
|
+
npm install
|
84
|
+
|
85
|
+
# Start development server
|
86
|
+
npm run dev
|
87
|
+
```
|
88
|
+
|
89
|
+
### Backend (Python)
|
90
|
+
```bash
|
91
|
+
# Install dependencies
|
92
|
+
cd torrent-downloader-react/backend
|
93
|
+
pip install -r requirements.txt
|
94
|
+
|
95
|
+
# Start development server
|
96
|
+
python -m torrent_downloader.server
|
97
|
+
```
|
98
|
+
|
99
|
+
## API Documentation
|
100
|
+
|
101
|
+
The backend provides a RESTful API:
|
102
|
+
|
103
|
+
- `GET /api/torrents` - List all torrents
|
104
|
+
- `POST /api/torrents` - Add new torrent
|
105
|
+
- `DELETE /api/torrents/{id}` - Remove torrent
|
106
|
+
- `GET /api/torrents/{id}/status` - Get torrent status
|
107
|
+
|
108
|
+
## License
|
109
|
+
|
110
|
+
MIT License - See LICENSE file for details.
|
111
|
+
|
112
|
+
## Legal Notice
|
113
|
+
|
114
|
+
This software is intended for downloading legal torrents only. Users are responsible for compliance with applicable laws.
|
@@ -1,164 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: torrent-downloader-react
|
3
|
-
Version: 1.1.3
|
4
|
-
Summary: A modern, user-friendly torrent downloader application
|
5
|
-
Home-page: https://github.com/stevenbtc/torrent-downloader
|
6
|
-
Author: Steven Yan
|
7
|
-
Author-email: yulong.yan@uqconnect.edu.au
|
8
|
-
Project-URL: Bug Tracker, https://github.com/stevenbtc/torrent-downloader/issues
|
9
|
-
Project-URL: Documentation, https://github.com/stevenbtc/torrent-downloader#readme
|
10
|
-
Project-URL: Source Code, https://github.com/stevenbtc/torrent-downloader
|
11
|
-
Keywords: torrent,downloader,p2p,bittorrent,libtorrent
|
12
|
-
Classifier: Development Status :: 4 - Beta
|
13
|
-
Classifier: Environment :: Web Environment
|
14
|
-
Classifier: Framework :: FastAPI
|
15
|
-
Classifier: Intended Audience :: End Users/Desktop
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
17
|
-
Classifier: Operating System :: OS Independent
|
18
|
-
Classifier: Programming Language :: Python :: 3
|
19
|
-
Classifier: Programming Language :: Python :: 3.8
|
20
|
-
Classifier: Programming Language :: Python :: 3.9
|
21
|
-
Classifier: Programming Language :: Python :: 3.10
|
22
|
-
Classifier: Programming Language :: Python :: 3.11
|
23
|
-
Classifier: Topic :: Internet :: WWW/HTTP
|
24
|
-
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
25
|
-
Requires-Python: >=3.8
|
26
|
-
Description-Content-Type: text/markdown
|
27
|
-
|
28
|
-
# Torrent Downloader
|
29
|
-
|
30
|
-
A modern, user-friendly torrent downloader application built with React and Python.
|
31
|
-
|
32
|
-
## Features
|
33
|
-
|
34
|
-
- Clean, modern user interface
|
35
|
-
- Real-time download progress and speed monitoring
|
36
|
-
- Cross-platform support (Windows, macOS, Linux)
|
37
|
-
- Easy-to-use magnet link support
|
38
|
-
- Dark mode support
|
39
|
-
|
40
|
-
## Prerequisites
|
41
|
-
|
42
|
-
Before installing, make sure you have the required system dependencies:
|
43
|
-
|
44
|
-
### System Dependencies
|
45
|
-
|
46
|
-
#### Windows
|
47
|
-
- Python 3.8 or higher
|
48
|
-
- Microsoft Visual C++ Redistributable (latest version)
|
49
|
-
|
50
|
-
#### macOS
|
51
|
-
```bash
|
52
|
-
# Required: Install libtorrent system package
|
53
|
-
brew install libtorrent-rasterbar
|
54
|
-
```
|
55
|
-
|
56
|
-
#### Linux (Ubuntu/Debian)
|
57
|
-
```bash
|
58
|
-
# Required: Install libtorrent system package
|
59
|
-
sudo apt-get update
|
60
|
-
sudo apt-get install python3-libtorrent
|
61
|
-
```
|
62
|
-
|
63
|
-
#### Linux (Fedora)
|
64
|
-
```bash
|
65
|
-
# Required: Install libtorrent system package
|
66
|
-
sudo dnf install rb_libtorrent-python3
|
67
|
-
```
|
68
|
-
|
69
|
-
### Alternative Installation Methods
|
70
|
-
|
71
|
-
#### Using Conda (All Platforms)
|
72
|
-
If you're using Conda, you can install libtorrent in your environment:
|
73
|
-
```bash
|
74
|
-
conda create -n torrent-env python=3.11
|
75
|
-
conda activate torrent-env
|
76
|
-
conda install -c conda-forge libtorrent
|
77
|
-
```
|
78
|
-
|
79
|
-
## Installation
|
80
|
-
|
81
|
-
### Method 1: Using pip (Recommended)
|
82
|
-
|
83
|
-
```bash
|
84
|
-
# 1. Install system dependencies (see Prerequisites section above)
|
85
|
-
|
86
|
-
# 2. Create and activate a virtual environment (recommended)
|
87
|
-
python3 -m venv venv
|
88
|
-
source venv/bin/activate # On Windows: venv\Scripts\activate
|
89
|
-
|
90
|
-
# 3. Install the package
|
91
|
-
pip install torrent-downloader-react
|
92
|
-
|
93
|
-
# 4. Run the application
|
94
|
-
torrent-downloader-react
|
95
|
-
```
|
96
|
-
|
97
|
-
The application will start and open in your default web browser at http://127.0.0.1:8000
|
98
|
-
|
99
|
-
### Method 2: From Source
|
100
|
-
|
101
|
-
1. Clone the repository:
|
102
|
-
```bash
|
103
|
-
git clone https://github.com/yourusername/torrent-downloader.git
|
104
|
-
cd torrent-downloader/torrent-downloader-react
|
105
|
-
```
|
106
|
-
|
107
|
-
2. Build the application:
|
108
|
-
```bash
|
109
|
-
cd backend
|
110
|
-
python build.py
|
111
|
-
```
|
112
|
-
|
113
|
-
3. Install the built package:
|
114
|
-
```bash
|
115
|
-
pip install dist/torrent-downloader-*.whl
|
116
|
-
```
|
117
|
-
|
118
|
-
4. Run the application:
|
119
|
-
```bash
|
120
|
-
torrent-downloader
|
121
|
-
```
|
122
|
-
|
123
|
-
## Usage
|
124
|
-
|
125
|
-
1. Start the application using one of the installation methods above
|
126
|
-
2. The application will open in your default web browser
|
127
|
-
3. Paste a magnet link into the input field
|
128
|
-
4. Click "Add Torrent" to start downloading
|
129
|
-
5. Monitor progress in the torrents list
|
130
|
-
6. Click "Open Downloads" to view your downloaded files
|
131
|
-
|
132
|
-
## Development
|
133
|
-
|
134
|
-
### Frontend (React)
|
135
|
-
|
136
|
-
```bash
|
137
|
-
cd torrent-downloader-react
|
138
|
-
npm install
|
139
|
-
npm run dev
|
140
|
-
```
|
141
|
-
|
142
|
-
### Backend (Python)
|
143
|
-
|
144
|
-
```bash
|
145
|
-
cd torrent-downloader-react/backend
|
146
|
-
pip install -r requirements.txt
|
147
|
-
python -m torrent_downloader.server
|
148
|
-
```
|
149
|
-
|
150
|
-
## Contributing
|
151
|
-
|
152
|
-
1. Fork the repository
|
153
|
-
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
|
154
|
-
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
|
155
|
-
4. Push to the branch (`git push origin feature/amazing-feature`)
|
156
|
-
5. Open a Pull Request
|
157
|
-
|
158
|
-
## License
|
159
|
-
|
160
|
-
This project is licensed under the MIT License - see the LICENSE file for details.
|
161
|
-
|
162
|
-
## Disclaimer
|
163
|
-
|
164
|
-
This software is for downloading legal torrents only. The authors are not responsible for any misuse of this software.
|
@@ -1,164 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: torrent-downloader-react
|
3
|
-
Version: 1.1.3
|
4
|
-
Summary: A modern, user-friendly torrent downloader application
|
5
|
-
Home-page: https://github.com/stevenbtc/torrent-downloader
|
6
|
-
Author: Steven Yan
|
7
|
-
Author-email: yulong.yan@uqconnect.edu.au
|
8
|
-
Project-URL: Bug Tracker, https://github.com/stevenbtc/torrent-downloader/issues
|
9
|
-
Project-URL: Documentation, https://github.com/stevenbtc/torrent-downloader#readme
|
10
|
-
Project-URL: Source Code, https://github.com/stevenbtc/torrent-downloader
|
11
|
-
Keywords: torrent,downloader,p2p,bittorrent,libtorrent
|
12
|
-
Classifier: Development Status :: 4 - Beta
|
13
|
-
Classifier: Environment :: Web Environment
|
14
|
-
Classifier: Framework :: FastAPI
|
15
|
-
Classifier: Intended Audience :: End Users/Desktop
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
17
|
-
Classifier: Operating System :: OS Independent
|
18
|
-
Classifier: Programming Language :: Python :: 3
|
19
|
-
Classifier: Programming Language :: Python :: 3.8
|
20
|
-
Classifier: Programming Language :: Python :: 3.9
|
21
|
-
Classifier: Programming Language :: Python :: 3.10
|
22
|
-
Classifier: Programming Language :: Python :: 3.11
|
23
|
-
Classifier: Topic :: Internet :: WWW/HTTP
|
24
|
-
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
25
|
-
Requires-Python: >=3.8
|
26
|
-
Description-Content-Type: text/markdown
|
27
|
-
|
28
|
-
# Torrent Downloader
|
29
|
-
|
30
|
-
A modern, user-friendly torrent downloader application built with React and Python.
|
31
|
-
|
32
|
-
## Features
|
33
|
-
|
34
|
-
- Clean, modern user interface
|
35
|
-
- Real-time download progress and speed monitoring
|
36
|
-
- Cross-platform support (Windows, macOS, Linux)
|
37
|
-
- Easy-to-use magnet link support
|
38
|
-
- Dark mode support
|
39
|
-
|
40
|
-
## Prerequisites
|
41
|
-
|
42
|
-
Before installing, make sure you have the required system dependencies:
|
43
|
-
|
44
|
-
### System Dependencies
|
45
|
-
|
46
|
-
#### Windows
|
47
|
-
- Python 3.8 or higher
|
48
|
-
- Microsoft Visual C++ Redistributable (latest version)
|
49
|
-
|
50
|
-
#### macOS
|
51
|
-
```bash
|
52
|
-
# Required: Install libtorrent system package
|
53
|
-
brew install libtorrent-rasterbar
|
54
|
-
```
|
55
|
-
|
56
|
-
#### Linux (Ubuntu/Debian)
|
57
|
-
```bash
|
58
|
-
# Required: Install libtorrent system package
|
59
|
-
sudo apt-get update
|
60
|
-
sudo apt-get install python3-libtorrent
|
61
|
-
```
|
62
|
-
|
63
|
-
#### Linux (Fedora)
|
64
|
-
```bash
|
65
|
-
# Required: Install libtorrent system package
|
66
|
-
sudo dnf install rb_libtorrent-python3
|
67
|
-
```
|
68
|
-
|
69
|
-
### Alternative Installation Methods
|
70
|
-
|
71
|
-
#### Using Conda (All Platforms)
|
72
|
-
If you're using Conda, you can install libtorrent in your environment:
|
73
|
-
```bash
|
74
|
-
conda create -n torrent-env python=3.11
|
75
|
-
conda activate torrent-env
|
76
|
-
conda install -c conda-forge libtorrent
|
77
|
-
```
|
78
|
-
|
79
|
-
## Installation
|
80
|
-
|
81
|
-
### Method 1: Using pip (Recommended)
|
82
|
-
|
83
|
-
```bash
|
84
|
-
# 1. Install system dependencies (see Prerequisites section above)
|
85
|
-
|
86
|
-
# 2. Create and activate a virtual environment (recommended)
|
87
|
-
python3 -m venv venv
|
88
|
-
source venv/bin/activate # On Windows: venv\Scripts\activate
|
89
|
-
|
90
|
-
# 3. Install the package
|
91
|
-
pip install torrent-downloader-react
|
92
|
-
|
93
|
-
# 4. Run the application
|
94
|
-
torrent-downloader-react
|
95
|
-
```
|
96
|
-
|
97
|
-
The application will start and open in your default web browser at http://127.0.0.1:8000
|
98
|
-
|
99
|
-
### Method 2: From Source
|
100
|
-
|
101
|
-
1. Clone the repository:
|
102
|
-
```bash
|
103
|
-
git clone https://github.com/yourusername/torrent-downloader.git
|
104
|
-
cd torrent-downloader/torrent-downloader-react
|
105
|
-
```
|
106
|
-
|
107
|
-
2. Build the application:
|
108
|
-
```bash
|
109
|
-
cd backend
|
110
|
-
python build.py
|
111
|
-
```
|
112
|
-
|
113
|
-
3. Install the built package:
|
114
|
-
```bash
|
115
|
-
pip install dist/torrent-downloader-*.whl
|
116
|
-
```
|
117
|
-
|
118
|
-
4. Run the application:
|
119
|
-
```bash
|
120
|
-
torrent-downloader
|
121
|
-
```
|
122
|
-
|
123
|
-
## Usage
|
124
|
-
|
125
|
-
1. Start the application using one of the installation methods above
|
126
|
-
2. The application will open in your default web browser
|
127
|
-
3. Paste a magnet link into the input field
|
128
|
-
4. Click "Add Torrent" to start downloading
|
129
|
-
5. Monitor progress in the torrents list
|
130
|
-
6. Click "Open Downloads" to view your downloaded files
|
131
|
-
|
132
|
-
## Development
|
133
|
-
|
134
|
-
### Frontend (React)
|
135
|
-
|
136
|
-
```bash
|
137
|
-
cd torrent-downloader-react
|
138
|
-
npm install
|
139
|
-
npm run dev
|
140
|
-
```
|
141
|
-
|
142
|
-
### Backend (Python)
|
143
|
-
|
144
|
-
```bash
|
145
|
-
cd torrent-downloader-react/backend
|
146
|
-
pip install -r requirements.txt
|
147
|
-
python -m torrent_downloader.server
|
148
|
-
```
|
149
|
-
|
150
|
-
## Contributing
|
151
|
-
|
152
|
-
1. Fork the repository
|
153
|
-
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
|
154
|
-
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
|
155
|
-
4. Push to the branch (`git push origin feature/amazing-feature`)
|
156
|
-
5. Open a Pull Request
|
157
|
-
|
158
|
-
## License
|
159
|
-
|
160
|
-
This project is licensed under the MIT License - see the LICENSE file for details.
|
161
|
-
|
162
|
-
## Disclaimer
|
163
|
-
|
164
|
-
This software is for downloading legal torrents only. The authors are not responsible for any misuse of this software.
|
File without changes
|
{torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/__init__.py
RENAMED
File without changes
|
{torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/server.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{torrent-downloader-react-1.1.3 → torrent-downloader-react-1.1.4}/torrent_downloader/static/vite.svg
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|