torrent-downloader-react 1.0.0__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.
@@ -0,0 +1,119 @@
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
+
28
+ # Torrent Downloader
29
+
30
+ A modern, user-friendly torrent downloader application built with React and Python.
31
+
32
+ ## Features
33
+
34
+ - Clean, modern user interface
35
+ - Real-time download progress and speed monitoring
36
+ - Cross-platform support (Windows, macOS, Linux)
37
+ - Easy-to-use magnet link support
38
+ - Dark mode support
39
+
40
+ ## Installation
41
+
42
+ ### Method 1: Using pip (Recommended)
43
+
44
+ ```bash
45
+ # Install the package
46
+ pip install torrent-downloader
47
+
48
+ # Run the application
49
+ torrent-downloader
50
+ ```
51
+
52
+ The application will start and open in your default web browser at http://127.0.0.1:8000
53
+
54
+ ### Method 2: From Source
55
+
56
+ 1. Clone the repository:
57
+ ```bash
58
+ git clone https://github.com/yourusername/torrent-downloader.git
59
+ cd torrent-downloader/torrent-downloader-react
60
+ ```
61
+
62
+ 2. Build the application:
63
+ ```bash
64
+ cd backend
65
+ python build.py
66
+ ```
67
+
68
+ 3. Install the built package:
69
+ ```bash
70
+ pip install dist/torrent-downloader-*.whl
71
+ ```
72
+
73
+ 4. Run the application:
74
+ ```bash
75
+ torrent-downloader
76
+ ```
77
+
78
+ ## Usage
79
+
80
+ 1. Start the application using one of the installation methods above
81
+ 2. The application will open in your default web browser
82
+ 3. Paste a magnet link into the input field
83
+ 4. Click "Add Torrent" to start downloading
84
+ 5. Monitor progress in the torrents list
85
+ 6. Click "Open Downloads" to view your downloaded files
86
+
87
+ ## Development
88
+
89
+ ### Frontend (React)
90
+
91
+ ```bash
92
+ cd torrent-downloader-react
93
+ npm install
94
+ npm run dev
95
+ ```
96
+
97
+ ### Backend (Python)
98
+
99
+ ```bash
100
+ cd torrent-downloader-react/backend
101
+ pip install -r requirements.txt
102
+ python -m torrent_downloader.server
103
+ ```
104
+
105
+ ## Contributing
106
+
107
+ 1. Fork the repository
108
+ 2. Create your feature branch (`git checkout -b feature/amazing-feature`)
109
+ 3. Commit your changes (`git commit -m 'Add some amazing feature'`)
110
+ 4. Push to the branch (`git push origin feature/amazing-feature`)
111
+ 5. Open a Pull Request
112
+
113
+ ## License
114
+
115
+ This project is licensed under the MIT License - see the LICENSE file for details.
116
+
117
+ ## Disclaimer
118
+
119
+ This software is for downloading legal torrents only. The authors are not responsible for any misuse of this software.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,55 @@
1
+ from setuptools import setup, find_packages
2
+ import os
3
+
4
+ # Read the contents of README.md
5
+ with open(os.path.join(os.path.dirname(os.path.dirname(__file__)), "README.md"), encoding="utf-8") as f:
6
+ long_description = f.read()
7
+
8
+ setup(
9
+ name="torrent-downloader-react",
10
+ version="1.0.0",
11
+ packages=find_packages(),
12
+ install_requires=[
13
+ "fastapi>=0.109.0",
14
+ "uvicorn>=0.27.0",
15
+ "python-libtorrent>=2.0.0",
16
+ "pydantic>=2.0.0"
17
+ ],
18
+ entry_points={
19
+ "console_scripts": [
20
+ "torrent-downloader-react=torrent_downloader.server:main",
21
+ ],
22
+ },
23
+ author="Your Name",
24
+ author_email="your.email@example.com",
25
+ description="A modern, user-friendly torrent downloader application",
26
+ long_description=long_description,
27
+ long_description_content_type="text/markdown",
28
+ keywords="torrent, downloader, p2p, bittorrent, libtorrent",
29
+ url="https://github.com/yourusername/torrent-downloader",
30
+ project_urls={
31
+ "Bug Tracker": "https://github.com/yourusername/torrent-downloader/issues",
32
+ "Documentation": "https://github.com/yourusername/torrent-downloader#readme",
33
+ "Source Code": "https://github.com/yourusername/torrent-downloader",
34
+ },
35
+ classifiers=[
36
+ "Development Status :: 4 - Beta",
37
+ "Environment :: Web Environment",
38
+ "Framework :: FastAPI",
39
+ "Intended Audience :: End Users/Desktop",
40
+ "License :: OSI Approved :: MIT License",
41
+ "Operating System :: OS Independent",
42
+ "Programming Language :: Python :: 3",
43
+ "Programming Language :: Python :: 3.8",
44
+ "Programming Language :: Python :: 3.9",
45
+ "Programming Language :: Python :: 3.10",
46
+ "Programming Language :: Python :: 3.11",
47
+ "Topic :: Internet :: WWW/HTTP",
48
+ "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
49
+ ],
50
+ python_requires=">=3.8",
51
+ include_package_data=True,
52
+ package_data={
53
+ "torrent_downloader": ["static/*", "static/**/*"],
54
+ },
55
+ )
@@ -0,0 +1,119 @@
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
+
28
+ # Torrent Downloader
29
+
30
+ A modern, user-friendly torrent downloader application built with React and Python.
31
+
32
+ ## Features
33
+
34
+ - Clean, modern user interface
35
+ - Real-time download progress and speed monitoring
36
+ - Cross-platform support (Windows, macOS, Linux)
37
+ - Easy-to-use magnet link support
38
+ - Dark mode support
39
+
40
+ ## Installation
41
+
42
+ ### Method 1: Using pip (Recommended)
43
+
44
+ ```bash
45
+ # Install the package
46
+ pip install torrent-downloader
47
+
48
+ # Run the application
49
+ torrent-downloader
50
+ ```
51
+
52
+ The application will start and open in your default web browser at http://127.0.0.1:8000
53
+
54
+ ### Method 2: From Source
55
+
56
+ 1. Clone the repository:
57
+ ```bash
58
+ git clone https://github.com/yourusername/torrent-downloader.git
59
+ cd torrent-downloader/torrent-downloader-react
60
+ ```
61
+
62
+ 2. Build the application:
63
+ ```bash
64
+ cd backend
65
+ python build.py
66
+ ```
67
+
68
+ 3. Install the built package:
69
+ ```bash
70
+ pip install dist/torrent-downloader-*.whl
71
+ ```
72
+
73
+ 4. Run the application:
74
+ ```bash
75
+ torrent-downloader
76
+ ```
77
+
78
+ ## Usage
79
+
80
+ 1. Start the application using one of the installation methods above
81
+ 2. The application will open in your default web browser
82
+ 3. Paste a magnet link into the input field
83
+ 4. Click "Add Torrent" to start downloading
84
+ 5. Monitor progress in the torrents list
85
+ 6. Click "Open Downloads" to view your downloaded files
86
+
87
+ ## Development
88
+
89
+ ### Frontend (React)
90
+
91
+ ```bash
92
+ cd torrent-downloader-react
93
+ npm install
94
+ npm run dev
95
+ ```
96
+
97
+ ### Backend (Python)
98
+
99
+ ```bash
100
+ cd torrent-downloader-react/backend
101
+ pip install -r requirements.txt
102
+ python -m torrent_downloader.server
103
+ ```
104
+
105
+ ## Contributing
106
+
107
+ 1. Fork the repository
108
+ 2. Create your feature branch (`git checkout -b feature/amazing-feature`)
109
+ 3. Commit your changes (`git commit -m 'Add some amazing feature'`)
110
+ 4. Push to the branch (`git push origin feature/amazing-feature`)
111
+ 5. Open a Pull Request
112
+
113
+ ## License
114
+
115
+ This project is licensed under the MIT License - see the LICENSE file for details.
116
+
117
+ ## Disclaimer
118
+
119
+ This software is for downloading legal torrents only. The authors are not responsible for any misuse of this software.
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ torrent_downloader_react.egg-info/PKG-INFO
3
+ torrent_downloader_react.egg-info/SOURCES.txt
4
+ torrent_downloader_react.egg-info/dependency_links.txt
5
+ torrent_downloader_react.egg-info/entry_points.txt
6
+ torrent_downloader_react.egg-info/requires.txt
7
+ torrent_downloader_react.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ torrent-downloader-react = torrent_downloader.server:main
@@ -0,0 +1,4 @@
1
+ fastapi>=0.109.0
2
+ uvicorn>=0.27.0
3
+ python-libtorrent>=2.0.0
4
+ pydantic>=2.0.0