torrent-downloader-react 1.1.6__py3-none-any.whl → 1.1.10__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.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/METADATA +56 -36
- {torrent_downloader_react-1.1.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/RECORD +5 -5
- {torrent_downloader_react-1.1.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/WHEEL +0 -0
- {torrent_downloader_react-1.1.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/entry_points.txt +0 -0
- {torrent_downloader_react-1.1.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/top_level.txt +0 -0
{torrent_downloader_react-1.1.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/METADATA
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: torrent-downloader-react
|
3
|
-
Version: 1.1.
|
4
|
-
Summary: A
|
3
|
+
Version: 1.1.10
|
4
|
+
Summary: A high-performance, React-based BitTorrent client with an intuitive interface for seamless file downloading
|
5
5
|
Home-page: https://github.com/stevenbtc/torrent-downloader
|
6
6
|
Author: Steven Yan
|
7
7
|
Author-email: yulong.yan@uqconnect.edu.au
|
@@ -33,32 +33,43 @@ Requires-Dist: httpx>=0.27.0
|
|
33
33
|
|
34
34
|
# Torrent Downloader Web App
|
35
35
|
|
36
|
-
A modern, full-featured torrent downloader with a clean React interface and
|
36
|
+
A modern, full-featured torrent downloader with a clean React interface and FastAPI backend.
|
37
37
|
|
38
|
-
|
38
|
+

|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
40
|
+
## Features
|
41
|
+
|
42
|
+
- **Sleek, Responsive UI**: Modern React interface that works on desktop and mobile
|
43
|
+
- **Real-time Updates**: Live tracking of download progress, speed, and ETA
|
44
|
+
- **Easy to Use**: Simple interface for adding and managing downloads
|
45
|
+
- **Flexible Backend**: Powerful FastAPI server handling torrent operations
|
46
|
+
- **Lightweight**: Minimal resource usage while maintaining full functionality
|
47
|
+
- **Cross-platform**: Works on Windows, macOS, and Linux
|
44
48
|
|
45
49
|
## System Requirements
|
46
50
|
|
47
|
-
- Python 3.8
|
48
|
-
- Platform-specific dependencies:
|
51
|
+
- Python 3.8 or higher
|
52
|
+
- Platform-specific libtorrent dependencies:
|
49
53
|
- **Windows**: Microsoft Visual C++ Redistributable
|
50
54
|
- **macOS**: `brew install libtorrent-rasterbar`
|
51
55
|
- **Ubuntu/Debian**: `sudo apt-get install python3-libtorrent`
|
52
56
|
- **Fedora**: `sudo dnf install rb_libtorrent-python3`
|
53
57
|
|
54
|
-
##
|
58
|
+
## Installation
|
55
59
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
60
|
+
### From PyPI (Recommended)
|
61
|
+
|
62
|
+
```bash
|
63
|
+
pip install torrent-downloader-react
|
64
|
+
```
|
65
|
+
|
66
|
+
### From Source
|
67
|
+
|
68
|
+
```bash
|
69
|
+
git clone https://github.com/stevenbtc/torrent-downloader.git
|
70
|
+
cd torrent-downloader/torrent-downloader-react/backend
|
71
|
+
pip install -e .
|
72
|
+
```
|
62
73
|
|
63
74
|
## Usage
|
64
75
|
|
@@ -67,32 +78,26 @@ torrent-downloader-react # Opens in browser at http://127.0.0.1:8000
|
|
67
78
|
torrent-downloader-react
|
68
79
|
```
|
69
80
|
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
|
72
|
-
5. Access completed downloads in your
|
81
|
+
3. Paste a magnet link in the input field and click "Add Torrent"
|
82
|
+
4. Monitor download progress in the list view
|
83
|
+
5. Access completed downloads in your Downloads/TorrentDownloader folder
|
84
|
+
6. Click "Open Download Folder" to view your downloaded files
|
73
85
|
|
74
|
-
##
|
86
|
+
## Development Setup
|
75
87
|
|
76
|
-
|
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
|
88
|
+
### Frontend (React + Vite)
|
84
89
|
|
85
|
-
### Frontend (React)
|
86
90
|
```bash
|
87
91
|
# Install dependencies
|
88
92
|
cd torrent-downloader-react
|
89
93
|
npm install
|
90
94
|
|
91
|
-
# Start development server
|
95
|
+
# Start development server (runs on http://localhost:5173)
|
92
96
|
npm run dev
|
93
97
|
```
|
94
98
|
|
95
|
-
### Backend (
|
99
|
+
### Backend (FastAPI)
|
100
|
+
|
96
101
|
```bash
|
97
102
|
# Install dependencies
|
98
103
|
cd torrent-downloader-react/backend
|
@@ -106,10 +111,25 @@ python -m torrent_downloader.server
|
|
106
111
|
|
107
112
|
The backend provides a RESTful API:
|
108
113
|
|
109
|
-
- `
|
110
|
-
- `
|
111
|
-
- `DELETE /api/
|
112
|
-
- `GET /api/
|
114
|
+
- `POST /api/torrent/add` - Add new torrent
|
115
|
+
- `GET /api/torrent/list` - List all active torrents
|
116
|
+
- `DELETE /api/torrent/{torrent_id}` - Remove torrent
|
117
|
+
- `GET /api/downloads/path` - Get downloads directory path
|
118
|
+
- `POST /api/downloads/open` - Open downloads folder
|
119
|
+
|
120
|
+
## Alternative Installation with Conda
|
121
|
+
|
122
|
+
```bash
|
123
|
+
# Create and activate conda environment
|
124
|
+
conda create -n torrent-env python=3.11
|
125
|
+
conda activate torrent-env
|
126
|
+
|
127
|
+
# Install libtorrent dependency
|
128
|
+
conda install -c conda-forge libtorrent
|
129
|
+
|
130
|
+
# Install the package
|
131
|
+
pip install torrent-downloader-react
|
132
|
+
```
|
113
133
|
|
114
134
|
## License
|
115
135
|
|
{torrent_downloader_react-1.1.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/RECORD
RENAMED
@@ -4,8 +4,8 @@ torrent_downloader/static/index.html,sha256=qbIb30KqotcdOau_VL6lu2JA8OBoMHvqOu7k
|
|
4
4
|
torrent_downloader/static/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
|
5
5
|
torrent_downloader/static/assets/index-BKZnulWN.css,sha256=z1S8Zpwm3Jy_RlURoKsyoJs8cwX1kBbfCU7z5meLe3w,5039
|
6
6
|
torrent_downloader/static/assets/index-lPeprbEH.js,sha256=bRoCBH5Z1VwY5OQpOfdqBSHqzZiKOnbfZu0cmsJSZbM,190416
|
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.10.dist-info/METADATA,sha256=TCJ6ecefc04sRrdTUWP7eBOj9AT_42KD68oX707v5bw,4351
|
8
|
+
torrent_downloader_react-1.1.10.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
9
|
+
torrent_downloader_react-1.1.10.dist-info/entry_points.txt,sha256=zkljgTNEM0p9I4xw4FN0N5PVrNmB6KVLUWjBO32n0do,76
|
10
|
+
torrent_downloader_react-1.1.10.dist-info/top_level.txt,sha256=THWnh7qxxVmoQ89QVJ8v6mmSzEQdFdXnryplXTQXuCA,19
|
11
|
+
torrent_downloader_react-1.1.10.dist-info/RECORD,,
|
{torrent_downloader_react-1.1.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
{torrent_downloader_react-1.1.6.dist-info → torrent_downloader_react-1.1.10.dist-info}/top_level.txt
RENAMED
File without changes
|