torrent-downloader-react 1.0.6__tar.gz → 1.0.8__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/PKG-INFO +20 -27
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/setup.py +6 -2
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader_react.egg-info/PKG-INFO +20 -27
- torrent-downloader-react-1.0.8/torrent_downloader_react.egg-info/requires.txt +9 -0
- torrent-downloader-react-1.0.6/torrent_downloader_react.egg-info/requires.txt +0 -3
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/setup.cfg +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader/__init__.py +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader/server.py +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader/static/assets/index-BWN4x5dM.js +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader/static/assets/index-DVy8AvwL.css +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader/static/index.html +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader/static/vite.svg +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader_react.egg-info/SOURCES.txt +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader_react.egg-info/dependency_links.txt +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader_react.egg-info/entry_points.txt +0 -0
- {torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/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.8
|
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,12 +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.8",
|
11
11
|
packages=find_packages(),
|
12
12
|
install_requires=[
|
13
13
|
"fastapi>=0.109.0",
|
14
14
|
"uvicorn>=0.27.0",
|
15
|
-
"pydantic>=2.0.0"
|
15
|
+
"pydantic>=2.0.0",
|
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'"
|
16
20
|
],
|
17
21
|
entry_points={
|
18
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.8
|
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.6 → torrent-downloader-react-1.0.8}/torrent_downloader/__init__.py
RENAMED
File without changes
|
{torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader/server.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{torrent-downloader-react-1.0.6 → torrent-downloader-react-1.0.8}/torrent_downloader/static/vite.svg
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|