torrent-downloader-react 1.0.7__tar.gz → 1.0.9__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.
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/PKG-INFO +20 -27
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/setup.py +5 -2
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader_react.egg-info/PKG-INFO +20 -27
- torrent-downloader-react-1.0.9/torrent_downloader_react.egg-info/requires.txt +9 -0
- torrent-downloader-react-1.0.7/torrent_downloader_react.egg-info/requires.txt +0 -4
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/setup.cfg +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/__init__.py +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/server.py +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/static/assets/index-BWN4x5dM.js +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/static/assets/index-DVy8AvwL.css +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/static/index.html +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/static/vite.svg +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader_react.egg-info/SOURCES.txt +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader_react.egg-info/dependency_links.txt +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader_react.egg-info/entry_points.txt +0 -0
- {torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader_react.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: torrent-downloader-react
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.9
|
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
|
@@ -41,45 +41,34 @@ A modern, user-friendly torrent downloader application built with React and Pyth
|
|
41
41
|
|
42
42
|
Before installing, make sure you have the required system dependencies:
|
43
43
|
|
44
|
-
###
|
44
|
+
### System Dependencies
|
45
|
+
|
46
|
+
#### Windows
|
45
47
|
- Python 3.8 or higher
|
46
48
|
- Microsoft Visual C++ Redistributable (latest version)
|
47
|
-
- Libtorrent:
|
48
|
-
```bash
|
49
|
-
# Option 1: Using pip
|
50
|
-
pip install python-libtorrent
|
51
|
-
|
52
|
-
# Option 2: Using conda
|
53
|
-
conda install -c conda-forge libtorrent
|
54
|
-
```
|
55
49
|
|
56
|
-
|
50
|
+
#### macOS
|
57
51
|
```bash
|
58
|
-
#
|
52
|
+
# Required: Install libtorrent system package
|
59
53
|
brew install libtorrent-rasterbar
|
60
|
-
|
61
|
-
# Or using conda
|
62
|
-
conda install -c conda-forge libtorrent
|
63
54
|
```
|
64
55
|
|
65
|
-
|
56
|
+
#### Linux (Ubuntu/Debian)
|
66
57
|
```bash
|
58
|
+
# Required: Install libtorrent system package
|
67
59
|
sudo apt-get update
|
68
60
|
sudo apt-get install python3-libtorrent
|
69
|
-
|
70
|
-
# Or using conda
|
71
|
-
conda install -c conda-forge libtorrent
|
72
61
|
```
|
73
62
|
|
74
|
-
|
63
|
+
#### Linux (Fedora)
|
75
64
|
```bash
|
65
|
+
# Required: Install libtorrent system package
|
76
66
|
sudo dnf install rb_libtorrent-python3
|
77
|
-
|
78
|
-
# Or using conda
|
79
|
-
conda install -c conda-forge libtorrent
|
80
67
|
```
|
81
68
|
|
82
|
-
###
|
69
|
+
### Alternative Installation Methods
|
70
|
+
|
71
|
+
#### Using Conda (All Platforms)
|
83
72
|
If you're using Conda, you can install libtorrent in your environment:
|
84
73
|
```bash
|
85
74
|
conda create -n torrent-env python=3.11
|
@@ -92,12 +81,16 @@ conda install -c conda-forge libtorrent
|
|
92
81
|
### Method 1: Using pip (Recommended)
|
93
82
|
|
94
83
|
```bash
|
95
|
-
# 1. Install
|
84
|
+
# 1. Install system dependencies (see Prerequisites section above)
|
85
|
+
|
86
|
+
# 2. Create and activate a virtual environment (recommended)
|
87
|
+
python3 -m venv venv
|
88
|
+
source venv/bin/activate # On Windows: venv\Scripts\activate
|
96
89
|
|
97
|
-
#
|
90
|
+
# 3. Install the package
|
98
91
|
pip install torrent-downloader-react
|
99
92
|
|
100
|
-
#
|
93
|
+
# 4. Run the application
|
101
94
|
torrent-downloader-react
|
102
95
|
```
|
103
96
|
|
@@ -7,13 +7,16 @@ 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.0.
|
10
|
+
version="1.0.9",
|
11
11
|
packages=find_packages(),
|
12
12
|
install_requires=[
|
13
13
|
"fastapi>=0.109.0",
|
14
14
|
"uvicorn>=0.27.0",
|
15
15
|
"pydantic>=2.0.0",
|
16
|
-
|
16
|
+
# Note: On macOS, you need to install libtorrent-rasterbar first:
|
17
|
+
# brew install libtorrent-rasterbar
|
18
|
+
"libtorrent-python>=2.0.0; platform_system=='Darwin'",
|
19
|
+
"python-libtorrent>=2.0.0; platform_system!='Darwin'"
|
17
20
|
],
|
18
21
|
entry_points={
|
19
22
|
"console_scripts": [
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: torrent-downloader-react
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.9
|
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
|
@@ -41,45 +41,34 @@ A modern, user-friendly torrent downloader application built with React and Pyth
|
|
41
41
|
|
42
42
|
Before installing, make sure you have the required system dependencies:
|
43
43
|
|
44
|
-
###
|
44
|
+
### System Dependencies
|
45
|
+
|
46
|
+
#### Windows
|
45
47
|
- Python 3.8 or higher
|
46
48
|
- Microsoft Visual C++ Redistributable (latest version)
|
47
|
-
- Libtorrent:
|
48
|
-
```bash
|
49
|
-
# Option 1: Using pip
|
50
|
-
pip install python-libtorrent
|
51
|
-
|
52
|
-
# Option 2: Using conda
|
53
|
-
conda install -c conda-forge libtorrent
|
54
|
-
```
|
55
49
|
|
56
|
-
|
50
|
+
#### macOS
|
57
51
|
```bash
|
58
|
-
#
|
52
|
+
# Required: Install libtorrent system package
|
59
53
|
brew install libtorrent-rasterbar
|
60
|
-
|
61
|
-
# Or using conda
|
62
|
-
conda install -c conda-forge libtorrent
|
63
54
|
```
|
64
55
|
|
65
|
-
|
56
|
+
#### Linux (Ubuntu/Debian)
|
66
57
|
```bash
|
58
|
+
# Required: Install libtorrent system package
|
67
59
|
sudo apt-get update
|
68
60
|
sudo apt-get install python3-libtorrent
|
69
|
-
|
70
|
-
# Or using conda
|
71
|
-
conda install -c conda-forge libtorrent
|
72
61
|
```
|
73
62
|
|
74
|
-
|
63
|
+
#### Linux (Fedora)
|
75
64
|
```bash
|
65
|
+
# Required: Install libtorrent system package
|
76
66
|
sudo dnf install rb_libtorrent-python3
|
77
|
-
|
78
|
-
# Or using conda
|
79
|
-
conda install -c conda-forge libtorrent
|
80
67
|
```
|
81
68
|
|
82
|
-
###
|
69
|
+
### Alternative Installation Methods
|
70
|
+
|
71
|
+
#### Using Conda (All Platforms)
|
83
72
|
If you're using Conda, you can install libtorrent in your environment:
|
84
73
|
```bash
|
85
74
|
conda create -n torrent-env python=3.11
|
@@ -92,12 +81,16 @@ conda install -c conda-forge libtorrent
|
|
92
81
|
### Method 1: Using pip (Recommended)
|
93
82
|
|
94
83
|
```bash
|
95
|
-
# 1. Install
|
84
|
+
# 1. Install system dependencies (see Prerequisites section above)
|
85
|
+
|
86
|
+
# 2. Create and activate a virtual environment (recommended)
|
87
|
+
python3 -m venv venv
|
88
|
+
source venv/bin/activate # On Windows: venv\Scripts\activate
|
96
89
|
|
97
|
-
#
|
90
|
+
# 3. Install the package
|
98
91
|
pip install torrent-downloader-react
|
99
92
|
|
100
|
-
#
|
93
|
+
# 4. Run the application
|
101
94
|
torrent-downloader-react
|
102
95
|
```
|
103
96
|
|
File without changes
|
{torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/__init__.py
RENAMED
File without changes
|
{torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/server.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{torrent-downloader-react-1.0.7 → torrent-downloader-react-1.0.9}/torrent_downloader/static/vite.svg
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|