torrent-downloader-react 1.0.0__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.
@@ -0,0 +1,123 @@
1
+ Metadata-Version: 2.1
2
+ Name: torrent-downloader-react
3
+ Version: 1.0.0
4
+ Summary: A modern, user-friendly torrent downloader application
5
+ Home-page: https://github.com/yourusername/torrent-downloader
6
+ Author: Your Name
7
+ Author-email: your.email@example.com
8
+ Project-URL: Bug Tracker, https://github.com/yourusername/torrent-downloader/issues
9
+ Project-URL: Documentation, https://github.com/yourusername/torrent-downloader#readme
10
+ Project-URL: Source Code, https://github.com/yourusername/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: python-libtorrent>=2.0.0
30
+ Requires-Dist: pydantic>=2.0.0
31
+
32
+ # Torrent Downloader
33
+
34
+ A modern, user-friendly torrent downloader application built with React and Python.
35
+
36
+ ## Features
37
+
38
+ - Clean, modern user interface
39
+ - Real-time download progress and speed monitoring
40
+ - Cross-platform support (Windows, macOS, Linux)
41
+ - Easy-to-use magnet link support
42
+ - Dark mode support
43
+
44
+ ## Installation
45
+
46
+ ### Method 1: Using pip (Recommended)
47
+
48
+ ```bash
49
+ # Install the package
50
+ pip install torrent-downloader
51
+
52
+ # Run the application
53
+ torrent-downloader
54
+ ```
55
+
56
+ The application will start and open in your default web browser at http://127.0.0.1:8000
57
+
58
+ ### Method 2: From Source
59
+
60
+ 1. Clone the repository:
61
+ ```bash
62
+ git clone https://github.com/yourusername/torrent-downloader.git
63
+ cd torrent-downloader/torrent-downloader-react
64
+ ```
65
+
66
+ 2. Build the application:
67
+ ```bash
68
+ cd backend
69
+ python build.py
70
+ ```
71
+
72
+ 3. Install the built package:
73
+ ```bash
74
+ pip install dist/torrent-downloader-*.whl
75
+ ```
76
+
77
+ 4. Run the application:
78
+ ```bash
79
+ torrent-downloader
80
+ ```
81
+
82
+ ## Usage
83
+
84
+ 1. Start the application using one of the installation methods above
85
+ 2. The application will open in your default web browser
86
+ 3. Paste a magnet link into the input field
87
+ 4. Click "Add Torrent" to start downloading
88
+ 5. Monitor progress in the torrents list
89
+ 6. Click "Open Downloads" to view your downloaded files
90
+
91
+ ## Development
92
+
93
+ ### Frontend (React)
94
+
95
+ ```bash
96
+ cd torrent-downloader-react
97
+ npm install
98
+ npm run dev
99
+ ```
100
+
101
+ ### Backend (Python)
102
+
103
+ ```bash
104
+ cd torrent-downloader-react/backend
105
+ pip install -r requirements.txt
106
+ python -m torrent_downloader.server
107
+ ```
108
+
109
+ ## Contributing
110
+
111
+ 1. Fork the repository
112
+ 2. Create your feature branch (`git checkout -b feature/amazing-feature`)
113
+ 3. Commit your changes (`git commit -m 'Add some amazing feature'`)
114
+ 4. Push to the branch (`git push origin feature/amazing-feature`)
115
+ 5. Open a Pull Request
116
+
117
+ ## License
118
+
119
+ This project is licensed under the MIT License - see the LICENSE file for details.
120
+
121
+ ## Disclaimer
122
+
123
+ This software is for downloading legal torrents only. The authors are not responsible for any misuse of this software.
@@ -0,0 +1,5 @@
1
+ torrent_downloader_react-1.0.0.dist-info/METADATA,sha256=aVG3UgFM2O4S7oOcV6c6n5AaxxzWxGNBAGBN2ZaDSHQ,3377
2
+ torrent_downloader_react-1.0.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
3
+ torrent_downloader_react-1.0.0.dist-info/entry_points.txt,sha256=zkljgTNEM0p9I4xw4FN0N5PVrNmB6KVLUWjBO32n0do,76
4
+ torrent_downloader_react-1.0.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
5
+ torrent_downloader_react-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.45.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ torrent-downloader-react = torrent_downloader.server:main