torrent-downloader-react 1.1.6__tar.gz → 1.1.10__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.
Files changed (15) hide show
  1. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/PKG-INFO +56 -36
  2. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/setup.py +2 -2
  3. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader_react.egg-info/PKG-INFO +56 -36
  4. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/setup.cfg +0 -0
  5. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader/__init__.py +0 -0
  6. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader/server.py +0 -0
  7. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader/static/assets/index-BKZnulWN.css +0 -0
  8. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader/static/assets/index-lPeprbEH.js +0 -0
  9. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader/static/index.html +0 -0
  10. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader/static/vite.svg +0 -0
  11. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader_react.egg-info/SOURCES.txt +0 -0
  12. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader_react.egg-info/dependency_links.txt +0 -0
  13. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader_react.egg-info/entry_points.txt +0 -0
  14. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader_react.egg-info/requires.txt +0 -0
  15. {torrent-downloader-react-1.1.6 → torrent-downloader-react-1.1.10}/torrent_downloader_react.egg-info/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: torrent-downloader-react
3
- Version: 1.1.6
4
- Summary: A modern, user-friendly torrent downloader application
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
@@ -27,32 +27,43 @@ Description-Content-Type: text/markdown
27
27
 
28
28
  # Torrent Downloader Web App
29
29
 
30
- A modern, full-featured torrent downloader with a clean React interface and Python backend.
30
+ A modern, full-featured torrent downloader with a clean React interface and FastAPI backend.
31
31
 
32
- ## Quick Start
32
+ ![Torrent Downloader Web UI](https://github.com/stevenbtc/torrent-downloader/raw/main/torrent-downloader-react/screenshots/webapp_screenshot.png)
33
33
 
34
- ```bash
35
- pip install torrent-downloader-react
36
- torrent-downloader-react # Opens in browser at http://127.0.0.1:8000
37
- ```
34
+ ## Features
35
+
36
+ - **Sleek, Responsive UI**: Modern React interface that works on desktop and mobile
37
+ - **Real-time Updates**: Live tracking of download progress, speed, and ETA
38
+ - **Easy to Use**: Simple interface for adding and managing downloads
39
+ - **Flexible Backend**: Powerful FastAPI server handling torrent operations
40
+ - **Lightweight**: Minimal resource usage while maintaining full functionality
41
+ - **Cross-platform**: Works on Windows, macOS, and Linux
38
42
 
39
43
  ## System Requirements
40
44
 
41
- - Python 3.8+
42
- - Platform-specific dependencies:
45
+ - Python 3.8 or higher
46
+ - Platform-specific libtorrent dependencies:
43
47
  - **Windows**: Microsoft Visual C++ Redistributable
44
48
  - **macOS**: `brew install libtorrent-rasterbar`
45
49
  - **Ubuntu/Debian**: `sudo apt-get install python3-libtorrent`
46
50
  - **Fedora**: `sudo dnf install rb_libtorrent-python3`
47
51
 
48
- ## Features
52
+ ## Installation
49
53
 
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
54
+ ### From PyPI (Recommended)
55
+
56
+ ```bash
57
+ pip install torrent-downloader-react
58
+ ```
59
+
60
+ ### From Source
61
+
62
+ ```bash
63
+ git clone https://github.com/stevenbtc/torrent-downloader.git
64
+ cd torrent-downloader/torrent-downloader-react/backend
65
+ pip install -e .
66
+ ```
56
67
 
57
68
  ## Usage
58
69
 
@@ -61,32 +72,26 @@ torrent-downloader-react # Opens in browser at http://127.0.0.1:8000
61
72
  torrent-downloader-react
62
73
  ```
63
74
  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
75
+ 3. Paste a magnet link in the input field and click "Add Torrent"
76
+ 4. Monitor download progress in the list view
77
+ 5. Access completed downloads in your Downloads/TorrentDownloader folder
78
+ 6. Click "Open Download Folder" to view your downloaded files
67
79
 
68
- ## Alternative Installation: Using Conda
80
+ ## Development Setup
69
81
 
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
82
+ ### Frontend (React + Vite)
78
83
 
79
- ### Frontend (React)
80
84
  ```bash
81
85
  # Install dependencies
82
86
  cd torrent-downloader-react
83
87
  npm install
84
88
 
85
- # Start development server
89
+ # Start development server (runs on http://localhost:5173)
86
90
  npm run dev
87
91
  ```
88
92
 
89
- ### Backend (Python)
93
+ ### Backend (FastAPI)
94
+
90
95
  ```bash
91
96
  # Install dependencies
92
97
  cd torrent-downloader-react/backend
@@ -100,10 +105,25 @@ python -m torrent_downloader.server
100
105
 
101
106
  The backend provides a RESTful API:
102
107
 
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
108
+ - `POST /api/torrent/add` - Add new torrent
109
+ - `GET /api/torrent/list` - List all active torrents
110
+ - `DELETE /api/torrent/{torrent_id}` - Remove torrent
111
+ - `GET /api/downloads/path` - Get downloads directory path
112
+ - `POST /api/downloads/open` - Open downloads folder
113
+
114
+ ## Alternative Installation with Conda
115
+
116
+ ```bash
117
+ # Create and activate conda environment
118
+ conda create -n torrent-env python=3.11
119
+ conda activate torrent-env
120
+
121
+ # Install libtorrent dependency
122
+ conda install -c conda-forge libtorrent
123
+
124
+ # Install the package
125
+ pip install torrent-downloader-react
126
+ ```
107
127
 
108
128
  ## License
109
129
 
@@ -7,7 +7,7 @@ with open(os.path.join(os.path.dirname(os.path.dirname(__file__)), "README.md"),
7
7
 
8
8
  setup(
9
9
  name="torrent-downloader-react",
10
- version="1.1.6",
10
+ version="1.1.10",
11
11
  packages=find_packages(),
12
12
  install_requires=[
13
13
  "fastapi>=0.109.0",
@@ -24,7 +24,7 @@ setup(
24
24
  },
25
25
  author="Steven Yan",
26
26
  author_email="yulong.yan@uqconnect.edu.au",
27
- description="A modern, user-friendly torrent downloader application",
27
+ description="A high-performance, React-based BitTorrent client with an intuitive interface for seamless file downloading",
28
28
  long_description=long_description,
29
29
  long_description_content_type="text/markdown",
30
30
  keywords="torrent, downloader, p2p, bittorrent, libtorrent",
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: torrent-downloader-react
3
- Version: 1.1.6
4
- Summary: A modern, user-friendly torrent downloader application
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
@@ -27,32 +27,43 @@ Description-Content-Type: text/markdown
27
27
 
28
28
  # Torrent Downloader Web App
29
29
 
30
- A modern, full-featured torrent downloader with a clean React interface and Python backend.
30
+ A modern, full-featured torrent downloader with a clean React interface and FastAPI backend.
31
31
 
32
- ## Quick Start
32
+ ![Torrent Downloader Web UI](https://github.com/stevenbtc/torrent-downloader/raw/main/torrent-downloader-react/screenshots/webapp_screenshot.png)
33
33
 
34
- ```bash
35
- pip install torrent-downloader-react
36
- torrent-downloader-react # Opens in browser at http://127.0.0.1:8000
37
- ```
34
+ ## Features
35
+
36
+ - **Sleek, Responsive UI**: Modern React interface that works on desktop and mobile
37
+ - **Real-time Updates**: Live tracking of download progress, speed, and ETA
38
+ - **Easy to Use**: Simple interface for adding and managing downloads
39
+ - **Flexible Backend**: Powerful FastAPI server handling torrent operations
40
+ - **Lightweight**: Minimal resource usage while maintaining full functionality
41
+ - **Cross-platform**: Works on Windows, macOS, and Linux
38
42
 
39
43
  ## System Requirements
40
44
 
41
- - Python 3.8+
42
- - Platform-specific dependencies:
45
+ - Python 3.8 or higher
46
+ - Platform-specific libtorrent dependencies:
43
47
  - **Windows**: Microsoft Visual C++ Redistributable
44
48
  - **macOS**: `brew install libtorrent-rasterbar`
45
49
  - **Ubuntu/Debian**: `sudo apt-get install python3-libtorrent`
46
50
  - **Fedora**: `sudo dnf install rb_libtorrent-python3`
47
51
 
48
- ## Features
52
+ ## Installation
49
53
 
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
54
+ ### From PyPI (Recommended)
55
+
56
+ ```bash
57
+ pip install torrent-downloader-react
58
+ ```
59
+
60
+ ### From Source
61
+
62
+ ```bash
63
+ git clone https://github.com/stevenbtc/torrent-downloader.git
64
+ cd torrent-downloader/torrent-downloader-react/backend
65
+ pip install -e .
66
+ ```
56
67
 
57
68
  ## Usage
58
69
 
@@ -61,32 +72,26 @@ torrent-downloader-react # Opens in browser at http://127.0.0.1:8000
61
72
  torrent-downloader-react
62
73
  ```
63
74
  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
75
+ 3. Paste a magnet link in the input field and click "Add Torrent"
76
+ 4. Monitor download progress in the list view
77
+ 5. Access completed downloads in your Downloads/TorrentDownloader folder
78
+ 6. Click "Open Download Folder" to view your downloaded files
67
79
 
68
- ## Alternative Installation: Using Conda
80
+ ## Development Setup
69
81
 
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
82
+ ### Frontend (React + Vite)
78
83
 
79
- ### Frontend (React)
80
84
  ```bash
81
85
  # Install dependencies
82
86
  cd torrent-downloader-react
83
87
  npm install
84
88
 
85
- # Start development server
89
+ # Start development server (runs on http://localhost:5173)
86
90
  npm run dev
87
91
  ```
88
92
 
89
- ### Backend (Python)
93
+ ### Backend (FastAPI)
94
+
90
95
  ```bash
91
96
  # Install dependencies
92
97
  cd torrent-downloader-react/backend
@@ -100,10 +105,25 @@ python -m torrent_downloader.server
100
105
 
101
106
  The backend provides a RESTful API:
102
107
 
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
108
+ - `POST /api/torrent/add` - Add new torrent
109
+ - `GET /api/torrent/list` - List all active torrents
110
+ - `DELETE /api/torrent/{torrent_id}` - Remove torrent
111
+ - `GET /api/downloads/path` - Get downloads directory path
112
+ - `POST /api/downloads/open` - Open downloads folder
113
+
114
+ ## Alternative Installation with Conda
115
+
116
+ ```bash
117
+ # Create and activate conda environment
118
+ conda create -n torrent-env python=3.11
119
+ conda activate torrent-env
120
+
121
+ # Install libtorrent dependency
122
+ conda install -c conda-forge libtorrent
123
+
124
+ # Install the package
125
+ pip install torrent-downloader-react
126
+ ```
107
127
 
108
128
  ## License
109
129