torrent-downloader-react 1.1.3__py3-none-any.whl → 1.1.4__py3-none-any.whl
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.
- torrent_downloader_react-1.1.4.dist-info/METADATA +120 -0
- {torrent_downloader_react-1.1.3.dist-info → torrent_downloader_react-1.1.4.dist-info}/RECORD +5 -5
- torrent_downloader_react-1.1.3.dist-info/METADATA +0 -170
- {torrent_downloader_react-1.1.3.dist-info → torrent_downloader_react-1.1.4.dist-info}/WHEEL +0 -0
- {torrent_downloader_react-1.1.3.dist-info → torrent_downloader_react-1.1.4.dist-info}/entry_points.txt +0 -0
- {torrent_downloader_react-1.1.3.dist-info → torrent_downloader_react-1.1.4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,120 @@
|
|
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
|
+
Requires-Dist: fastapi>=0.109.0
|
28
|
+
Requires-Dist: uvicorn>=0.27.0
|
29
|
+
Requires-Dist: pydantic>=2.0.0
|
30
|
+
Requires-Dist: libtorrent>=2.0.0
|
31
|
+
Requires-Dist: pytest>=8.0.0
|
32
|
+
Requires-Dist: httpx>=0.27.0
|
33
|
+
|
34
|
+
# Torrent Downloader Web App
|
35
|
+
|
36
|
+
A modern, full-featured torrent downloader with a clean React interface and Python backend.
|
37
|
+
|
38
|
+
## Quick Start
|
39
|
+
|
40
|
+
```bash
|
41
|
+
pip install torrent-downloader-react
|
42
|
+
torrent-downloader-react # Opens in browser at http://127.0.0.1:8000
|
43
|
+
```
|
44
|
+
|
45
|
+
## System Requirements
|
46
|
+
|
47
|
+
- Python 3.8+
|
48
|
+
- Platform-specific dependencies:
|
49
|
+
- **Windows**: Microsoft Visual C++ Redistributable
|
50
|
+
- **macOS**: `brew install libtorrent-rasterbar`
|
51
|
+
- **Ubuntu/Debian**: `sudo apt-get install python3-libtorrent`
|
52
|
+
- **Fedora**: `sudo dnf install rb_libtorrent-python3`
|
53
|
+
|
54
|
+
## Features
|
55
|
+
|
56
|
+
- Modern, responsive UI with dark mode
|
57
|
+
- Real-time download progress monitoring
|
58
|
+
- Download speed and ETA tracking
|
59
|
+
- Easy magnet link handling
|
60
|
+
- Cross-platform support
|
61
|
+
- Concurrent downloads
|
62
|
+
|
63
|
+
## Usage
|
64
|
+
|
65
|
+
1. Start the application:
|
66
|
+
```bash
|
67
|
+
torrent-downloader-react
|
68
|
+
```
|
69
|
+
2. Open your browser at http://127.0.0.1:8000
|
70
|
+
3. Paste a magnet link and click "Add Torrent"
|
71
|
+
4. Monitor progress in the downloads list
|
72
|
+
5. Access completed downloads in your downloads folder
|
73
|
+
|
74
|
+
## Alternative Installation: Using Conda
|
75
|
+
|
76
|
+
```bash
|
77
|
+
conda create -n torrent-env python=3.11
|
78
|
+
conda activate torrent-env
|
79
|
+
conda install -c conda-forge libtorrent
|
80
|
+
pip install torrent-downloader-react
|
81
|
+
```
|
82
|
+
|
83
|
+
## Development
|
84
|
+
|
85
|
+
### Frontend (React)
|
86
|
+
```bash
|
87
|
+
# Install dependencies
|
88
|
+
cd torrent-downloader-react
|
89
|
+
npm install
|
90
|
+
|
91
|
+
# Start development server
|
92
|
+
npm run dev
|
93
|
+
```
|
94
|
+
|
95
|
+
### Backend (Python)
|
96
|
+
```bash
|
97
|
+
# Install dependencies
|
98
|
+
cd torrent-downloader-react/backend
|
99
|
+
pip install -r requirements.txt
|
100
|
+
|
101
|
+
# Start development server
|
102
|
+
python -m torrent_downloader.server
|
103
|
+
```
|
104
|
+
|
105
|
+
## API Documentation
|
106
|
+
|
107
|
+
The backend provides a RESTful API:
|
108
|
+
|
109
|
+
- `GET /api/torrents` - List all torrents
|
110
|
+
- `POST /api/torrents` - Add new torrent
|
111
|
+
- `DELETE /api/torrents/{id}` - Remove torrent
|
112
|
+
- `GET /api/torrents/{id}/status` - Get torrent status
|
113
|
+
|
114
|
+
## License
|
115
|
+
|
116
|
+
MIT License - See LICENSE file for details.
|
117
|
+
|
118
|
+
## Legal Notice
|
119
|
+
|
120
|
+
This software is intended for downloading legal torrents only. Users are responsible for compliance with applicable laws.
|
{torrent_downloader_react-1.1.3.dist-info → torrent_downloader_react-1.1.4.dist-info}/RECORD
RENAMED
@@ -4,8 +4,8 @@ torrent_downloader/static/index.html,sha256=Tv38tp4U5bOJ_wyBc6pKXBC9mvEoNMeLaWy1
|
|
4
4
|
torrent_downloader/static/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
|
5
5
|
torrent_downloader/static/assets/index-BAUKkMK0.js,sha256=DHBtdpTUoshoVODxUgApRDdaoagc6do7e9x5nm6oRaI,189107
|
6
6
|
torrent_downloader/static/assets/index-DpeprjRI.css,sha256=Zf7iQ8lH-jt3BmMjwbzWhdbulp_IlCq0fK7ysI2H6eY,3595
|
7
|
-
torrent_downloader_react-1.1.
|
8
|
-
torrent_downloader_react-1.1.
|
9
|
-
torrent_downloader_react-1.1.
|
10
|
-
torrent_downloader_react-1.1.
|
11
|
-
torrent_downloader_react-1.1.
|
7
|
+
torrent_downloader_react-1.1.4.dist-info/METADATA,sha256=NLNtxlxyjRVabm7l-eWut-F3bM-_8BCwvrS1QjotoTc,3430
|
8
|
+
torrent_downloader_react-1.1.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
9
|
+
torrent_downloader_react-1.1.4.dist-info/entry_points.txt,sha256=zkljgTNEM0p9I4xw4FN0N5PVrNmB6KVLUWjBO32n0do,76
|
10
|
+
torrent_downloader_react-1.1.4.dist-info/top_level.txt,sha256=THWnh7qxxVmoQ89QVJ8v6mmSzEQdFdXnryplXTQXuCA,19
|
11
|
+
torrent_downloader_react-1.1.4.dist-info/RECORD,,
|
@@ -1,170 +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
|
-
Requires-Dist: fastapi>=0.109.0
|
28
|
-
Requires-Dist: uvicorn>=0.27.0
|
29
|
-
Requires-Dist: pydantic>=2.0.0
|
30
|
-
Requires-Dist: libtorrent>=2.0.0
|
31
|
-
Requires-Dist: pytest>=8.0.0
|
32
|
-
Requires-Dist: httpx>=0.27.0
|
33
|
-
|
34
|
-
# Torrent Downloader
|
35
|
-
|
36
|
-
A modern, user-friendly torrent downloader application built with React and Python.
|
37
|
-
|
38
|
-
## Features
|
39
|
-
|
40
|
-
- Clean, modern user interface
|
41
|
-
- Real-time download progress and speed monitoring
|
42
|
-
- Cross-platform support (Windows, macOS, Linux)
|
43
|
-
- Easy-to-use magnet link support
|
44
|
-
- Dark mode support
|
45
|
-
|
46
|
-
## Prerequisites
|
47
|
-
|
48
|
-
Before installing, make sure you have the required system dependencies:
|
49
|
-
|
50
|
-
### System Dependencies
|
51
|
-
|
52
|
-
#### Windows
|
53
|
-
- Python 3.8 or higher
|
54
|
-
- Microsoft Visual C++ Redistributable (latest version)
|
55
|
-
|
56
|
-
#### macOS
|
57
|
-
```bash
|
58
|
-
# Required: Install libtorrent system package
|
59
|
-
brew install libtorrent-rasterbar
|
60
|
-
```
|
61
|
-
|
62
|
-
#### Linux (Ubuntu/Debian)
|
63
|
-
```bash
|
64
|
-
# Required: Install libtorrent system package
|
65
|
-
sudo apt-get update
|
66
|
-
sudo apt-get install python3-libtorrent
|
67
|
-
```
|
68
|
-
|
69
|
-
#### Linux (Fedora)
|
70
|
-
```bash
|
71
|
-
# Required: Install libtorrent system package
|
72
|
-
sudo dnf install rb_libtorrent-python3
|
73
|
-
```
|
74
|
-
|
75
|
-
### Alternative Installation Methods
|
76
|
-
|
77
|
-
#### Using Conda (All Platforms)
|
78
|
-
If you're using Conda, you can install libtorrent in your environment:
|
79
|
-
```bash
|
80
|
-
conda create -n torrent-env python=3.11
|
81
|
-
conda activate torrent-env
|
82
|
-
conda install -c conda-forge libtorrent
|
83
|
-
```
|
84
|
-
|
85
|
-
## Installation
|
86
|
-
|
87
|
-
### Method 1: Using pip (Recommended)
|
88
|
-
|
89
|
-
```bash
|
90
|
-
# 1. Install system dependencies (see Prerequisites section above)
|
91
|
-
|
92
|
-
# 2. Create and activate a virtual environment (recommended)
|
93
|
-
python3 -m venv venv
|
94
|
-
source venv/bin/activate # On Windows: venv\Scripts\activate
|
95
|
-
|
96
|
-
# 3. Install the package
|
97
|
-
pip install torrent-downloader-react
|
98
|
-
|
99
|
-
# 4. Run the application
|
100
|
-
torrent-downloader-react
|
101
|
-
```
|
102
|
-
|
103
|
-
The application will start and open in your default web browser at http://127.0.0.1:8000
|
104
|
-
|
105
|
-
### Method 2: From Source
|
106
|
-
|
107
|
-
1. Clone the repository:
|
108
|
-
```bash
|
109
|
-
git clone https://github.com/yourusername/torrent-downloader.git
|
110
|
-
cd torrent-downloader/torrent-downloader-react
|
111
|
-
```
|
112
|
-
|
113
|
-
2. Build the application:
|
114
|
-
```bash
|
115
|
-
cd backend
|
116
|
-
python build.py
|
117
|
-
```
|
118
|
-
|
119
|
-
3. Install the built package:
|
120
|
-
```bash
|
121
|
-
pip install dist/torrent-downloader-*.whl
|
122
|
-
```
|
123
|
-
|
124
|
-
4. Run the application:
|
125
|
-
```bash
|
126
|
-
torrent-downloader
|
127
|
-
```
|
128
|
-
|
129
|
-
## Usage
|
130
|
-
|
131
|
-
1. Start the application using one of the installation methods above
|
132
|
-
2. The application will open in your default web browser
|
133
|
-
3. Paste a magnet link into the input field
|
134
|
-
4. Click "Add Torrent" to start downloading
|
135
|
-
5. Monitor progress in the torrents list
|
136
|
-
6. Click "Open Downloads" to view your downloaded files
|
137
|
-
|
138
|
-
## Development
|
139
|
-
|
140
|
-
### Frontend (React)
|
141
|
-
|
142
|
-
```bash
|
143
|
-
cd torrent-downloader-react
|
144
|
-
npm install
|
145
|
-
npm run dev
|
146
|
-
```
|
147
|
-
|
148
|
-
### Backend (Python)
|
149
|
-
|
150
|
-
```bash
|
151
|
-
cd torrent-downloader-react/backend
|
152
|
-
pip install -r requirements.txt
|
153
|
-
python -m torrent_downloader.server
|
154
|
-
```
|
155
|
-
|
156
|
-
## Contributing
|
157
|
-
|
158
|
-
1. Fork the repository
|
159
|
-
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
|
160
|
-
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
|
161
|
-
4. Push to the branch (`git push origin feature/amazing-feature`)
|
162
|
-
5. Open a Pull Request
|
163
|
-
|
164
|
-
## License
|
165
|
-
|
166
|
-
This project is licensed under the MIT License - see the LICENSE file for details.
|
167
|
-
|
168
|
-
## Disclaimer
|
169
|
-
|
170
|
-
This software is for downloading legal torrents only. The authors are not responsible for any misuse of this software.
|
File without changes
|
File without changes
|
{torrent_downloader_react-1.1.3.dist-info → torrent_downloader_react-1.1.4.dist-info}/top_level.txt
RENAMED
File without changes
|