torrent-downloader-react 1.0.0__py3-none-any.whl → 1.0.4__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {torrent_downloader_react-1.0.0.dist-info → torrent_downloader_react-1.0.4.dist-info}/METADATA +57 -6
- torrent_downloader_react-1.0.4.dist-info/RECORD +5 -0
- torrent_downloader_react-1.0.0.dist-info/RECORD +0 -5
- {torrent_downloader_react-1.0.0.dist-info → torrent_downloader_react-1.0.4.dist-info}/WHEEL +0 -0
- {torrent_downloader_react-1.0.0.dist-info → torrent_downloader_react-1.0.4.dist-info}/entry_points.txt +0 -0
- {torrent_downloader_react-1.0.0.dist-info → torrent_downloader_react-1.0.4.dist-info}/top_level.txt +0 -0
{torrent_downloader_react-1.0.0.dist-info → torrent_downloader_react-1.0.4.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: torrent-downloader-react
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.4
|
4
4
|
Summary: A modern, user-friendly torrent downloader application
|
5
5
|
Home-page: https://github.com/yourusername/torrent-downloader
|
6
6
|
Author: Your Name
|
@@ -26,7 +26,6 @@ Requires-Python: >=3.8
|
|
26
26
|
Description-Content-Type: text/markdown
|
27
27
|
Requires-Dist: fastapi>=0.109.0
|
28
28
|
Requires-Dist: uvicorn>=0.27.0
|
29
|
-
Requires-Dist: python-libtorrent>=2.0.0
|
30
29
|
Requires-Dist: pydantic>=2.0.0
|
31
30
|
|
32
31
|
# Torrent Downloader
|
@@ -41,16 +40,68 @@ A modern, user-friendly torrent downloader application built with React and Pyth
|
|
41
40
|
- Easy-to-use magnet link support
|
42
41
|
- Dark mode support
|
43
42
|
|
43
|
+
## Prerequisites
|
44
|
+
|
45
|
+
Before installing, make sure you have the required system dependencies:
|
46
|
+
|
47
|
+
### Windows
|
48
|
+
- Python 3.8 or higher
|
49
|
+
- Microsoft Visual C++ Redistributable (latest version)
|
50
|
+
- Libtorrent:
|
51
|
+
```bash
|
52
|
+
# Option 1: Using pip
|
53
|
+
pip install python-libtorrent
|
54
|
+
|
55
|
+
# Option 2: Using conda
|
56
|
+
conda install -c conda-forge libtorrent
|
57
|
+
```
|
58
|
+
|
59
|
+
### macOS
|
60
|
+
```bash
|
61
|
+
# Using Homebrew (recommended)
|
62
|
+
brew install libtorrent-rasterbar
|
63
|
+
|
64
|
+
# Or using conda
|
65
|
+
conda install -c conda-forge libtorrent
|
66
|
+
```
|
67
|
+
|
68
|
+
### Linux (Ubuntu/Debian)
|
69
|
+
```bash
|
70
|
+
sudo apt-get update
|
71
|
+
sudo apt-get install python3-libtorrent
|
72
|
+
|
73
|
+
# Or using conda
|
74
|
+
conda install -c conda-forge libtorrent
|
75
|
+
```
|
76
|
+
|
77
|
+
### Linux (Fedora)
|
78
|
+
```bash
|
79
|
+
sudo dnf install rb_libtorrent-python3
|
80
|
+
|
81
|
+
# Or using conda
|
82
|
+
conda install -c conda-forge libtorrent
|
83
|
+
```
|
84
|
+
|
85
|
+
### Using Conda (All Platforms)
|
86
|
+
If you're using Conda, you can install libtorrent in your environment:
|
87
|
+
```bash
|
88
|
+
conda create -n torrent-env python=3.11
|
89
|
+
conda activate torrent-env
|
90
|
+
conda install -c conda-forge libtorrent
|
91
|
+
```
|
92
|
+
|
44
93
|
## Installation
|
45
94
|
|
46
95
|
### Method 1: Using pip (Recommended)
|
47
96
|
|
48
97
|
```bash
|
49
|
-
# Install
|
50
|
-
pip install torrent-downloader
|
98
|
+
# 1. Install libtorrent (see Prerequisites section above)
|
51
99
|
|
52
|
-
#
|
53
|
-
torrent-downloader
|
100
|
+
# 2. Install the package
|
101
|
+
pip install torrent-downloader-react
|
102
|
+
|
103
|
+
# 3. Run the application
|
104
|
+
torrent-downloader-react
|
54
105
|
```
|
55
106
|
|
56
107
|
The application will start and open in your default web browser at http://127.0.0.1:8000
|
@@ -0,0 +1,5 @@
|
|
1
|
+
torrent_downloader_react-1.0.4.dist-info/METADATA,sha256=hlRSv1N3Ml5gDCfCyryFZ-UEad_ixafM6mkXjOlfP6g,4407
|
2
|
+
torrent_downloader_react-1.0.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
3
|
+
torrent_downloader_react-1.0.4.dist-info/entry_points.txt,sha256=zkljgTNEM0p9I4xw4FN0N5PVrNmB6KVLUWjBO32n0do,76
|
4
|
+
torrent_downloader_react-1.0.4.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
5
|
+
torrent_downloader_react-1.0.4.dist-info/RECORD,,
|
@@ -1,5 +0,0 @@
|
|
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,,
|
File without changes
|
File without changes
|
{torrent_downloader_react-1.0.0.dist-info → torrent_downloader_react-1.0.4.dist-info}/top_level.txt
RENAMED
File without changes
|