torrent-downloader-react 1.1.3__py3-none-any.whl → 1.1.5__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.
@@ -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.
@@ -1,11 +0,0 @@
1
- torrent_downloader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- torrent_downloader/server.py,sha256=hqN9nFSX7NbNOZsLyIU_UvKhw1ahb76LhLVrdgwkNLE,6714
3
- torrent_downloader/static/index.html,sha256=Tv38tp4U5bOJ_wyBc6pKXBC9mvEoNMeLaWy1R5VeNss,464
4
- torrent_downloader/static/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
5
- torrent_downloader/static/assets/index-BAUKkMK0.js,sha256=DHBtdpTUoshoVODxUgApRDdaoagc6do7e9x5nm6oRaI,189107
6
- torrent_downloader/static/assets/index-DpeprjRI.css,sha256=Zf7iQ8lH-jt3BmMjwbzWhdbulp_IlCq0fK7ysI2H6eY,3595
7
- torrent_downloader_react-1.1.3.dist-info/METADATA,sha256=HEWU0TVpzOmYM_UcZFGmBJc2O-8YaC1YLIckHGW93i0,4492
8
- torrent_downloader_react-1.1.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
9
- torrent_downloader_react-1.1.3.dist-info/entry_points.txt,sha256=zkljgTNEM0p9I4xw4FN0N5PVrNmB6KVLUWjBO32n0do,76
10
- torrent_downloader_react-1.1.3.dist-info/top_level.txt,sha256=THWnh7qxxVmoQ89QVJ8v6mmSzEQdFdXnryplXTQXuCA,19
11
- torrent_downloader_react-1.1.3.dist-info/RECORD,,