StreamingCommunity 1.7.6__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.
Potentially problematic release.
This version of StreamingCommunity might be problematic. Click here for more details.
- StreamingCommunity/Src/Api/Player/Helper/Vixcloud/js_parser.py +140 -0
- StreamingCommunity/Src/Api/Player/Helper/Vixcloud/util.py +166 -0
- StreamingCommunity/Src/Api/Player/ddl.py +89 -0
- StreamingCommunity/Src/Api/Player/maxstream.py +151 -0
- StreamingCommunity/Src/Api/Player/supervideo.py +194 -0
- StreamingCommunity/Src/Api/Player/vixcloud.py +212 -0
- StreamingCommunity/Src/Api/Site/1337xx/__init__.py +50 -0
- StreamingCommunity/Src/Api/Site/1337xx/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/1337xx/site.py +84 -0
- StreamingCommunity/Src/Api/Site/1337xx/title.py +66 -0
- StreamingCommunity/Src/Api/Site/altadefinizione/__init__.py +50 -0
- StreamingCommunity/Src/Api/Site/altadefinizione/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/altadefinizione/film.py +69 -0
- StreamingCommunity/Src/Api/Site/altadefinizione/site.py +86 -0
- StreamingCommunity/Src/Api/Site/animeunity/__init__.py +50 -0
- StreamingCommunity/Src/Api/Site/animeunity/anime.py +126 -0
- StreamingCommunity/Src/Api/Site/animeunity/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/animeunity/film_serie.py +131 -0
- StreamingCommunity/Src/Api/Site/animeunity/site.py +165 -0
- StreamingCommunity/Src/Api/Site/animeunity/util/ScrapeSerie.py +97 -0
- StreamingCommunity/Src/Api/Site/bitsearch/__init__.py +51 -0
- StreamingCommunity/Src/Api/Site/bitsearch/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/bitsearch/site.py +84 -0
- StreamingCommunity/Src/Api/Site/bitsearch/title.py +47 -0
- StreamingCommunity/Src/Api/Site/cb01new/__init__.py +51 -0
- StreamingCommunity/Src/Api/Site/cb01new/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/cb01new/film.py +69 -0
- StreamingCommunity/Src/Api/Site/cb01new/site.py +74 -0
- StreamingCommunity/Src/Api/Site/ddlstreamitaly/Player/ScrapeSerie.py +83 -0
- StreamingCommunity/Src/Api/Site/ddlstreamitaly/__init__.py +57 -0
- StreamingCommunity/Src/Api/Site/ddlstreamitaly/costant.py +16 -0
- StreamingCommunity/Src/Api/Site/ddlstreamitaly/series.py +142 -0
- StreamingCommunity/Src/Api/Site/ddlstreamitaly/site.py +93 -0
- StreamingCommunity/Src/Api/Site/ddlstreamitaly/util/ScrapeSerie.py +83 -0
- StreamingCommunity/Src/Api/Site/guardaserie/Player/ScrapeSerie.py +110 -0
- StreamingCommunity/Src/Api/Site/guardaserie/__init__.py +52 -0
- StreamingCommunity/Src/Api/Site/guardaserie/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/guardaserie/series.py +195 -0
- StreamingCommunity/Src/Api/Site/guardaserie/site.py +84 -0
- StreamingCommunity/Src/Api/Site/guardaserie/util/ScrapeSerie.py +110 -0
- StreamingCommunity/Src/Api/Site/mostraguarda/__init__.py +48 -0
- StreamingCommunity/Src/Api/Site/mostraguarda/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/mostraguarda/film.py +94 -0
- StreamingCommunity/Src/Api/Site/piratebays/__init__.py +50 -0
- StreamingCommunity/Src/Api/Site/piratebays/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/piratebays/site.py +89 -0
- StreamingCommunity/Src/Api/Site/piratebays/title.py +45 -0
- StreamingCommunity/Src/Api/Site/streamingcommunity/__init__.py +55 -0
- StreamingCommunity/Src/Api/Site/streamingcommunity/costant.py +15 -0
- StreamingCommunity/Src/Api/Site/streamingcommunity/film.py +70 -0
- StreamingCommunity/Src/Api/Site/streamingcommunity/series.py +203 -0
- StreamingCommunity/Src/Api/Site/streamingcommunity/site.py +126 -0
- StreamingCommunity/Src/Api/Site/streamingcommunity/util/ScrapeSerie.py +113 -0
- StreamingCommunity/Src/Api/Template/Class/SearchType.py +101 -0
- StreamingCommunity/Src/Api/Template/Util/__init__.py +5 -0
- StreamingCommunity/Src/Api/Template/Util/get_domain.py +137 -0
- StreamingCommunity/Src/Api/Template/Util/manage_ep.py +153 -0
- StreamingCommunity/Src/Api/Template/Util/recall_search.py +37 -0
- StreamingCommunity/Src/Api/Template/__init__.py +3 -0
- StreamingCommunity/Src/Api/Template/site.py +87 -0
- StreamingCommunity/Src/Lib/Downloader/HLS/downloader.py +968 -0
- StreamingCommunity/Src/Lib/Downloader/HLS/proxyes.py +110 -0
- StreamingCommunity/Src/Lib/Downloader/HLS/segments.py +540 -0
- StreamingCommunity/Src/Lib/Downloader/MP4/downloader.py +156 -0
- StreamingCommunity/Src/Lib/Downloader/TOR/downloader.py +222 -0
- StreamingCommunity/Src/Lib/Downloader/__init__.py +5 -0
- StreamingCommunity/Src/Lib/Driver/driver_1.py +76 -0
- StreamingCommunity/Src/Lib/FFmpeg/__init__.py +4 -0
- StreamingCommunity/Src/Lib/FFmpeg/capture.py +170 -0
- StreamingCommunity/Src/Lib/FFmpeg/command.py +292 -0
- StreamingCommunity/Src/Lib/FFmpeg/util.py +242 -0
- StreamingCommunity/Src/Lib/M3U8/__init__.py +6 -0
- StreamingCommunity/Src/Lib/M3U8/decryptor.py +129 -0
- StreamingCommunity/Src/Lib/M3U8/estimator.py +173 -0
- StreamingCommunity/Src/Lib/M3U8/parser.py +666 -0
- StreamingCommunity/Src/Lib/M3U8/url_fixer.py +52 -0
- StreamingCommunity/Src/Lib/TMBD/__init__.py +2 -0
- StreamingCommunity/Src/Lib/TMBD/obj_tmbd.py +39 -0
- StreamingCommunity/Src/Lib/TMBD/tmdb.py +346 -0
- StreamingCommunity/Src/Upload/update.py +64 -0
- StreamingCommunity/Src/Upload/version.py +5 -0
- StreamingCommunity/Src/Util/_jsonConfig.py +204 -0
- StreamingCommunity/Src/Util/call_stack.py +42 -0
- StreamingCommunity/Src/Util/color.py +20 -0
- StreamingCommunity/Src/Util/console.py +12 -0
- StreamingCommunity/Src/Util/headers.py +147 -0
- StreamingCommunity/Src/Util/logger.py +53 -0
- StreamingCommunity/Src/Util/message.py +46 -0
- StreamingCommunity/Src/Util/os.py +417 -0
- StreamingCommunity/Src/Util/table.py +163 -0
- StreamingCommunity/run.py +196 -0
- StreamingCommunity-1.7.6.dist-info/LICENSE +674 -0
- StreamingCommunity-1.7.6.dist-info/METADATA +348 -0
- StreamingCommunity-1.7.6.dist-info/RECORD +97 -0
- StreamingCommunity-1.7.6.dist-info/WHEEL +5 -0
- StreamingCommunity-1.7.6.dist-info/entry_points.txt +2 -0
- StreamingCommunity-1.7.6.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: StreamingCommunity
|
|
3
|
+
Version: 1.7.6
|
|
4
|
+
Home-page: https://github.com/Lovi-0/StreamingCommunity
|
|
5
|
+
Author: Lovi-0
|
|
6
|
+
Project-URL: Bug Reports, https://github.com/Lovi-0/StreamingCommunity/issues
|
|
7
|
+
Project-URL: Source, https://github.com/Lovi-0/StreamingCommunity
|
|
8
|
+
Keywords: streaming community
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: httpx
|
|
13
|
+
Requires-Dist: bs4
|
|
14
|
+
Requires-Dist: rich
|
|
15
|
+
Requires-Dist: tqdm
|
|
16
|
+
Requires-Dist: m3u8
|
|
17
|
+
Requires-Dist: psutil
|
|
18
|
+
Requires-Dist: unidecode
|
|
19
|
+
Requires-Dist: jsbeautifier
|
|
20
|
+
Requires-Dist: pathvalidate
|
|
21
|
+
Requires-Dist: fake-useragent
|
|
22
|
+
Requires-Dist: qbittorrent-api
|
|
23
|
+
Requires-Dist: python-qbittorrent
|
|
24
|
+
Requires-Dist: googlesearch-python
|
|
25
|
+
|
|
26
|
+
# StreamingCommunity Downloader 🎬
|
|
27
|
+
|
|
28
|
+

|
|
29
|
+
|
|
30
|
+
A versatile script designed to download films and series from various supported streaming platforms.
|
|
31
|
+
|
|
32
|
+
## 🤝 Join our Community
|
|
33
|
+
|
|
34
|
+
Chat, contribute, and have fun in our **Git_StreamingCommunity** Discord [Server](https://discord.com/invite/8vV68UGRc7)
|
|
35
|
+
|
|
36
|
+
## 📋 Table of Contents
|
|
37
|
+
|
|
38
|
+
- [Installation](#installation)
|
|
39
|
+
- [PyPI Installation](#pypi-installation)
|
|
40
|
+
- [Automatic Installation](#automatic-installation)
|
|
41
|
+
- [Manual Installation](#manual-installation)
|
|
42
|
+
- [Win 7](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Installation#win-7)
|
|
43
|
+
- [Termux](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Termux)
|
|
44
|
+
- [Configuration](#configuration)
|
|
45
|
+
- [Tutorial](#tutorial)
|
|
46
|
+
- [To Do](#to-do)
|
|
47
|
+
|
|
48
|
+
## 💻 Installation
|
|
49
|
+
|
|
50
|
+
### 1. PyPI Installation
|
|
51
|
+
|
|
52
|
+
Install directly from PyPI:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install StreamingCommunity
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
#### Creating a Run Script
|
|
59
|
+
|
|
60
|
+
Create `run_streaming.py`:
|
|
61
|
+
|
|
62
|
+
```python
|
|
63
|
+
from StreamingCommunity.run import main
|
|
64
|
+
|
|
65
|
+
if __name__ == "__main__":
|
|
66
|
+
main()
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Run the script:
|
|
70
|
+
```bash
|
|
71
|
+
python run_streaming.py
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
#### Updating via PyPI
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
pip install --upgrade StreamingCommunity
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### 2. Automatic Installation
|
|
81
|
+
|
|
82
|
+
#### Supported Operating Systems 💿
|
|
83
|
+
|
|
84
|
+
| OS | Automatic Installation Support |
|
|
85
|
+
|:----------------|:------------------------------:|
|
|
86
|
+
| Windows 10/11 | ✔️ |
|
|
87
|
+
| Windows 7 | ❌ |
|
|
88
|
+
| Debian Linux | ✔️ |
|
|
89
|
+
| Arch Linux | ✔️ |
|
|
90
|
+
| CentOS Stream 9 | ✔️ |
|
|
91
|
+
| FreeBSD | ⏳ |
|
|
92
|
+
| MacOS | ✔️ |
|
|
93
|
+
| Termux | ❌ |
|
|
94
|
+
|
|
95
|
+
#### Installation Steps
|
|
96
|
+
|
|
97
|
+
##### On Windows:
|
|
98
|
+
|
|
99
|
+
```powershell
|
|
100
|
+
.\win_install.bat
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
##### On Linux/MacOS/BSD:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
sudo chmod +x unix_install.sh && ./unix_install.sh
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
#### Usage
|
|
110
|
+
|
|
111
|
+
##### On Windows:
|
|
112
|
+
|
|
113
|
+
```powershell
|
|
114
|
+
python .\run.py
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
or
|
|
118
|
+
|
|
119
|
+
```powershell
|
|
120
|
+
source .venv/bin/activate && python run.py && deactivate
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
##### On Linux/MacOS/BSD:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
./run.py
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### 3. Manual Installation
|
|
130
|
+
|
|
131
|
+
#### Requirements 📋
|
|
132
|
+
|
|
133
|
+
Prerequisites:
|
|
134
|
+
* [Python](https://www.python.org/downloads/) > 3.8
|
|
135
|
+
* [FFmpeg](https://www.gyan.dev/ffmpeg/builds/)
|
|
136
|
+
|
|
137
|
+
#### Install Python Dependencies
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
pip install -r requirements.txt
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
#### Usage
|
|
144
|
+
|
|
145
|
+
##### On Windows:
|
|
146
|
+
|
|
147
|
+
```powershell
|
|
148
|
+
python run.py
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
##### On Linux/MacOS:
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
python3 run.py
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
### Update
|
|
158
|
+
|
|
159
|
+
Keep your script up to date with the latest features by running:
|
|
160
|
+
|
|
161
|
+
#### On Windows:
|
|
162
|
+
|
|
163
|
+
```powershell
|
|
164
|
+
python update.py
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
#### On Linux/MacOS:
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
python3 update.py
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
## Configuration ⚙️
|
|
174
|
+
|
|
175
|
+
You can change some behaviors by tweaking the configuration file.
|
|
176
|
+
|
|
177
|
+
The configuration file is divided into several main sections:
|
|
178
|
+
|
|
179
|
+
### DEFAULT Settings
|
|
180
|
+
|
|
181
|
+
```json
|
|
182
|
+
{
|
|
183
|
+
"root_path": "Video",
|
|
184
|
+
"map_episode_name": "%(tv_name)_S%(season)E%(episode)_%(episode_name)",
|
|
185
|
+
"not_close": false,
|
|
186
|
+
"show_trending": false
|
|
187
|
+
}
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
- `root_path`: Directory where all videos will be saved
|
|
191
|
+
|
|
192
|
+
#### Path examples:
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
* Windows: `C:\\MyLibrary\\Folder` or `\\\\MyServer\\MyLibrary` (if you want to use a network folder)
|
|
196
|
+
* Linux/MacOS: `Desktop/MyLibrary/Folder`
|
|
197
|
+
`<br/><br/>`
|
|
198
|
+
- `map_episode_name`: Template for TV series episode filenames
|
|
199
|
+
|
|
200
|
+
#### Episode name usage:
|
|
201
|
+
|
|
202
|
+
You can choose different vars:
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
* `%(tv_name)` : Is the name of TV Show
|
|
206
|
+
* `%(season)` : Is the number of the season
|
|
207
|
+
* `%(episode)` : Is the number of the episode
|
|
208
|
+
* `%(episode_name)` : Is the name of the episode
|
|
209
|
+
`<br/><br/>`
|
|
210
|
+
|
|
211
|
+
- `not_close`: If true, continues running after downloading
|
|
212
|
+
- `show_trending`: Display trending content on startup
|
|
213
|
+
|
|
214
|
+
#### qBittorrent Configuration
|
|
215
|
+
|
|
216
|
+
```json
|
|
217
|
+
{
|
|
218
|
+
"config_qbit_tor": {
|
|
219
|
+
"host": "192.168.1.59",
|
|
220
|
+
"port": "8080",
|
|
221
|
+
"user": "admin",
|
|
222
|
+
"pass": "adminadmin"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
To enable qBittorrent integration, follow the setup guide [here](https://github.com/lgallard/qBittorrent-Controller/wiki/How-to-enable-the-qBittorrent-Web-UI).
|
|
228
|
+
|
|
229
|
+
### REQUESTS Settings
|
|
230
|
+
|
|
231
|
+
```json
|
|
232
|
+
{
|
|
233
|
+
"timeout": 20,
|
|
234
|
+
"max_retry": 3
|
|
235
|
+
}
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
- `timeout`: Maximum timeout (in seconds) for each request
|
|
239
|
+
- `max_retry`: Number of retry attempts per segment during M3U8 index download
|
|
240
|
+
|
|
241
|
+
### BROWSER Settings
|
|
242
|
+
|
|
243
|
+
```json
|
|
244
|
+
{
|
|
245
|
+
"headless": false
|
|
246
|
+
}
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
- `headless`: Controls whether to run browser in headless mode
|
|
250
|
+
|
|
251
|
+
### M3U8_DOWNLOAD Settings
|
|
252
|
+
|
|
253
|
+
```json
|
|
254
|
+
{
|
|
255
|
+
"tqdm_delay": 0.01,
|
|
256
|
+
"tqdm_use_large_bar": true,
|
|
257
|
+
"default_video_workser": 12,
|
|
258
|
+
"default_audio_workser": 12,
|
|
259
|
+
"cleanup_tmp_folder": true
|
|
260
|
+
}
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
- `tqdm_delay`: Delay between progress bar updates
|
|
264
|
+
- `tqdm_use_large_bar`: Use detailed progress bar (recommended for desktop) set to false for mobile
|
|
265
|
+
- `default_video_workser`: Number of threads for video download
|
|
266
|
+
- `default_audio_workser`: Number of threads for audio download
|
|
267
|
+
- `cleanup_tmp_folder`: Remove temporary .ts files after download
|
|
268
|
+
|
|
269
|
+
#### Language Settings
|
|
270
|
+
|
|
271
|
+
The following codes can be used for `specific_list_audio` and `specific_list_subtitles`:
|
|
272
|
+
|
|
273
|
+
```
|
|
274
|
+
ara - Arabic eng - English ita - Italian por - Portuguese
|
|
275
|
+
baq - Basque fil - Filipino jpn - Japanese rum - Romanian
|
|
276
|
+
cat - Catalan fin - Finnish kan - Kannada rus - Russian
|
|
277
|
+
chi - Chinese fre - French kor - Korean spa - Spanish
|
|
278
|
+
cze - Czech ger - German mal - Malayalam swe - Swedish
|
|
279
|
+
dan - Danish glg - Galician may - Malay tam - Tamil
|
|
280
|
+
dut - Dutch gre - Greek nob - Norw. Bokm tel - Telugu
|
|
281
|
+
heb - Hebrew nor - Norwegian tha - Thai
|
|
282
|
+
forced-ita hin - Hindi pol - Polish tur - Turkish
|
|
283
|
+
hun - Hungarian ukr - Ukrainian
|
|
284
|
+
ind - Indonesian vie - Vietnamese
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
> [!IMPORTANT]
|
|
288
|
+
> Language code availability may vary by site. Some platforms might:
|
|
289
|
+
>
|
|
290
|
+
> - Use different language codes
|
|
291
|
+
> - Support only a subset of these languages
|
|
292
|
+
> - Offer additional languages not listed here
|
|
293
|
+
>
|
|
294
|
+
> Check the specific site's available options if downloads fail.
|
|
295
|
+
|
|
296
|
+
> [!TIP]
|
|
297
|
+
> You can configure multiple languages by adding them to the lists:
|
|
298
|
+
>
|
|
299
|
+
> ```json
|
|
300
|
+
> "specific_list_audio": ["ita", "eng", "spa"],
|
|
301
|
+
> "specific_list_subtitles": ["ita", "eng", "spa"]
|
|
302
|
+
> ```
|
|
303
|
+
|
|
304
|
+
### M3U8_PARSER Settings
|
|
305
|
+
|
|
306
|
+
```json
|
|
307
|
+
{
|
|
308
|
+
"force_resolution": -1,
|
|
309
|
+
"get_only_link": false
|
|
310
|
+
}
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
- `force_resolution`: Force specific resolution (-1 for best available, or specify 1080, 720, 360)
|
|
314
|
+
- `get_only_link`: Return M3U8 playlist/index URL instead of downloading
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
## 🌐 Website Status
|
|
318
|
+
|
|
319
|
+
| Website | Status |
|
|
320
|
+
|:-------------------|:------:|
|
|
321
|
+
| 1337xx | ✅ |
|
|
322
|
+
| Altadefinizione | ✅ |
|
|
323
|
+
| AnimeUnity | ✅ |
|
|
324
|
+
| BitSearch | ✅ |
|
|
325
|
+
| CB01New | ✅ |
|
|
326
|
+
| DDLStreamItaly | ✅ |
|
|
327
|
+
| GuardaSerie | ✅ |
|
|
328
|
+
| MostraGuarda | ✅ |
|
|
329
|
+
| PirateBays | ✅ |
|
|
330
|
+
| StreamingCommunity | ✅ |
|
|
331
|
+
|
|
332
|
+
## 📖 Tutorials
|
|
333
|
+
|
|
334
|
+
- [Windows Tutorial](https://www.youtube.com/watch?v=mZGqK4wdN-k)
|
|
335
|
+
- [Linux Tutorial](https://www.youtube.com/watch?v=0qUNXPE_mTg)
|
|
336
|
+
|
|
337
|
+
## 📝 To Do
|
|
338
|
+
|
|
339
|
+
- Create website API
|
|
340
|
+
|
|
341
|
+
## 🤝 Contributing
|
|
342
|
+
|
|
343
|
+
Contributions are welcome! Steps:
|
|
344
|
+
1. Fork the repository
|
|
345
|
+
2. Create feature branch (`git checkout -b feature/AmazingFeature`)
|
|
346
|
+
3. Commit changes (`git commit -m 'Add some AmazingFeature'`)
|
|
347
|
+
4. Push to branch (`git push origin feature/AmazingFeature`)
|
|
348
|
+
5. Open Pull Request
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
StreamingCommunity/run.py,sha256=I2qZ6XfLI_e5Ko_Orl5ySR1l25CGLb9HjOwrclCdSKg,6405
|
|
2
|
+
StreamingCommunity/Src/Api/Player/ddl.py,sha256=k6xvM2M6niADxURYkX2eMH6CtsTSSSE32HpR7wl4ZJo,2332
|
|
3
|
+
StreamingCommunity/Src/Api/Player/maxstream.py,sha256=0a0g6_V6fsQLLu9io-e76vl7DbF9TLB5ilOrkVACEb0,5275
|
|
4
|
+
StreamingCommunity/Src/Api/Player/supervideo.py,sha256=eRRFVcetdhLbbAT-CnlYxP73LPtLIdfnWBlbuhAlyhQ,5933
|
|
5
|
+
StreamingCommunity/Src/Api/Player/vixcloud.py,sha256=DbicZ2wjx3stAQHtojRG1vyHq2XiQqvxVh7PIfpSZ6Y,6720
|
|
6
|
+
StreamingCommunity/Src/Api/Player/Helper/Vixcloud/js_parser.py,sha256=JptgISTd5WwMFQxXRhulfe-nvkxRgidW48Pq-IcHHrQ,4235
|
|
7
|
+
StreamingCommunity/Src/Api/Player/Helper/Vixcloud/util.py,sha256=CY7tI6If7hy2K3K-9snyT3sVmR-FN9CGydgqjhwjHH4,5390
|
|
8
|
+
StreamingCommunity/Src/Api/Site/1337xx/__init__.py,sha256=bRpPBBJ6TQVnm7tq88gAmU6ka1GrD4-klBzkrJd5oe0,1127
|
|
9
|
+
StreamingCommunity/Src/Api/Site/1337xx/costant.py,sha256=SGyzMSHsGHg87pXGQyy1p5nCqllZoW1aeGacDlat0C4,354
|
|
10
|
+
StreamingCommunity/Src/Api/Site/1337xx/site.py,sha256=M6ZgLnNOsdupcFTYRvxLrj5ZiY_xsi-CL_EfXCAB6HE,2568
|
|
11
|
+
StreamingCommunity/Src/Api/Site/1337xx/title.py,sha256=OnNE9wBCTf09SEFMDhw-dg_x6rY3S-udRle_iLnzDCY,1949
|
|
12
|
+
StreamingCommunity/Src/Api/Site/altadefinizione/__init__.py,sha256=PVZlXiuog-z509U1Ozzwm1w7OZEE6fMJ0OVW7VRLNNY,1118
|
|
13
|
+
StreamingCommunity/Src/Api/Site/altadefinizione/costant.py,sha256=J5VmIGsMXz_Qln5N5XWzkyAYuP2NZoFvANcK9D3apPk,354
|
|
14
|
+
StreamingCommunity/Src/Api/Site/altadefinizione/film.py,sha256=5yEPvWQSB1fbfQVXfW-p3wzycI67EAaMJepozk5w_XE,2135
|
|
15
|
+
StreamingCommunity/Src/Api/Site/altadefinizione/site.py,sha256=rLeDt64bhz-NC_hoIf6x3MnEKHcayijI1iazc3vQb0g,2769
|
|
16
|
+
StreamingCommunity/Src/Api/Site/animeunity/__init__.py,sha256=k7vMCxut4_db9OBpHb6yBonDpidPGgVbVyEShGLGIyA,1208
|
|
17
|
+
StreamingCommunity/Src/Api/Site/animeunity/anime.py,sha256=NnvSqw8FlAuYTJPK7x9o3yLxwVgFMSj8LdUB_tBFYOA,3875
|
|
18
|
+
StreamingCommunity/Src/Api/Site/animeunity/costant.py,sha256=__5-UJ9Y2Ks4susTZgmS_qINgglXdO4_lVeXBr2jJhg,355
|
|
19
|
+
StreamingCommunity/Src/Api/Site/animeunity/film_serie.py,sha256=R27nyaIqdgcv0kkJ3RRBek6CsjxlOW3DjgnaDD1ZOqY,3909
|
|
20
|
+
StreamingCommunity/Src/Api/Site/animeunity/site.py,sha256=tr7lwjUNPcPs0WAa94u-mcVN78amO6SLSizkT4OP36k,5100
|
|
21
|
+
StreamingCommunity/Src/Api/Site/animeunity/util/ScrapeSerie.py,sha256=LzIuEvBRobNgcPi-vXP9Qh7Xu7oTAAH1WSiscfZaKpQ,2995
|
|
22
|
+
StreamingCommunity/Src/Api/Site/bitsearch/__init__.py,sha256=InXmNPXpfllqRjM99cUIFXHSAZygFsXKFj6a1k5B2YM,1127
|
|
23
|
+
StreamingCommunity/Src/Api/Site/bitsearch/costant.py,sha256=WuquTfhmMRXE3UTjmD7DV1mfR9Qqllup18tiv97Mb4o,355
|
|
24
|
+
StreamingCommunity/Src/Api/Site/bitsearch/site.py,sha256=fW8K6b7Af8gAE194Kr3wQHTIQOdtouwgVPXIn9uPC7g,2703
|
|
25
|
+
StreamingCommunity/Src/Api/Site/bitsearch/title.py,sha256=Bl8tzb4AwrVDyQFhc3jzaCg00JJcg4TqdUkteVOkiwU,1336
|
|
26
|
+
StreamingCommunity/Src/Api/Site/cb01new/__init__.py,sha256=qFNS4WrH9GwMwuYOmbDVIN3wTmnHgFFuLroDd-4XS-o,1137
|
|
27
|
+
StreamingCommunity/Src/Api/Site/cb01new/costant.py,sha256=eTkHhzCZQvCA7RoX75JK9xtRx3Ztljfw24MbhB9MHAw,356
|
|
28
|
+
StreamingCommunity/Src/Api/Site/cb01new/film.py,sha256=_RrnV3RzzdVaen9bgslJkLhO-MjfCCK-PC8ic4JRvuk,2168
|
|
29
|
+
StreamingCommunity/Src/Api/Site/cb01new/site.py,sha256=yE1FyZ43YIUi8Xj1DpxGZX6ZRJ5As0aVATz8AqfLxd8,2039
|
|
30
|
+
StreamingCommunity/Src/Api/Site/ddlstreamitaly/__init__.py,sha256=u3QA6ZHUPx3gJujlin6vkbT15fsqryD5XR8Vq5xhPWc,1357
|
|
31
|
+
StreamingCommunity/Src/Api/Site/ddlstreamitaly/costant.py,sha256=3W5Qqi6f7hPJc7TwBgifQbGYfSoXZv_A0gxjNQJgJ3I,418
|
|
32
|
+
StreamingCommunity/Src/Api/Site/ddlstreamitaly/series.py,sha256=RC4E9YQ4xMaXrDTRmyhjBlUlIaweyTiBnHRZI3OYaRE,4047
|
|
33
|
+
StreamingCommunity/Src/Api/Site/ddlstreamitaly/site.py,sha256=Kb_NVrb6ib-mwyqmiLBLL4B4KGN_ZOEWS_rNLXpmUD0,2773
|
|
34
|
+
StreamingCommunity/Src/Api/Site/ddlstreamitaly/Player/ScrapeSerie.py,sha256=eO-RRwvNomgRSJM3qtATfgQamXBSFtDs0haU6ku1mlQ,2500
|
|
35
|
+
StreamingCommunity/Src/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=wBnDME6W3I6wXPqZC7JU7STxFubH2LRyq0YS_IVK8Kg,2444
|
|
36
|
+
StreamingCommunity/Src/Api/Site/guardaserie/__init__.py,sha256=jIly7JdpT4-7dZh8D2jHPfzlXHYXTyXY8NGQUSh8Taw,1209
|
|
37
|
+
StreamingCommunity/Src/Api/Site/guardaserie/costant.py,sha256=p2nMai3AMQaUWV8D-6gYQ7YpyiJcBC0oKwl43utko6M,355
|
|
38
|
+
StreamingCommunity/Src/Api/Site/guardaserie/series.py,sha256=bXQ46WKFUmf-T_arF-qzUPn5nIM7oxeJzVi9lFqfZeU,6639
|
|
39
|
+
StreamingCommunity/Src/Api/Site/guardaserie/site.py,sha256=sCeFCWYSxkwvqBvfZNfRKtYC4ks7uMnR-GjYOd0ZK6o,2512
|
|
40
|
+
StreamingCommunity/Src/Api/Site/guardaserie/Player/ScrapeSerie.py,sha256=AnUx5mZF3rTEp0cGg9m12E6sBA1NzpkhAB_g6v2RsVM,3407
|
|
41
|
+
StreamingCommunity/Src/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=ZKURKPTrrwrZ4jFRyyTZ3d0iMVcCN3yKDw1hPwi9dEo,3297
|
|
42
|
+
StreamingCommunity/Src/Api/Site/mostraguarda/__init__.py,sha256=Io0ZURDfaamZL3r5jEcqCgwkG6yV-krZspEzwei3ERk,1091
|
|
43
|
+
StreamingCommunity/Src/Api/Site/mostraguarda/costant.py,sha256=J5VmIGsMXz_Qln5N5XWzkyAYuP2NZoFvANcK9D3apPk,354
|
|
44
|
+
StreamingCommunity/Src/Api/Site/mostraguarda/film.py,sha256=cMdiOquNxEW8R8tE6PbJTo31-PK_ww0WWbxuwyWUjSw,2790
|
|
45
|
+
StreamingCommunity/Src/Api/Site/piratebays/__init__.py,sha256=bRpPBBJ6TQVnm7tq88gAmU6ka1GrD4-klBzkrJd5oe0,1127
|
|
46
|
+
StreamingCommunity/Src/Api/Site/piratebays/costant.py,sha256=SGyzMSHsGHg87pXGQyy1p5nCqllZoW1aeGacDlat0C4,354
|
|
47
|
+
StreamingCommunity/Src/Api/Site/piratebays/site.py,sha256=tlBj9lEsxPzBrGBufqzBJGtmpgJqxGOII6nWBqWUrEI,2866
|
|
48
|
+
StreamingCommunity/Src/Api/Site/piratebays/title.py,sha256=x2009-jXGMhQeOJwoPyjr5UmsZFAmWQPzwMez4M35E8,1322
|
|
49
|
+
StreamingCommunity/Src/Api/Site/streamingcommunity/__init__.py,sha256=eB25i3RMiBRqhV5JKzRCfHI-txy_4xMZd4yZ5hj6Aoc,1386
|
|
50
|
+
StreamingCommunity/Src/Api/Site/streamingcommunity/costant.py,sha256=ujagI0aZzqT-7OM5Lf-YOF6xWPwa2Xhxrc5wwxxM4kI,340
|
|
51
|
+
StreamingCommunity/Src/Api/Site/streamingcommunity/film.py,sha256=kkrEwHFOCCuk9ZtlKMRIUwrRx-1cZ_ncvphGvzjcw54,2240
|
|
52
|
+
StreamingCommunity/Src/Api/Site/streamingcommunity/series.py,sha256=kE0cTyPzlDpELx8cCpUQsHNPCoj5mcsfKSaUVW--J10,7133
|
|
53
|
+
StreamingCommunity/Src/Api/Site/streamingcommunity/site.py,sha256=V3KzReCmVipuDZBhvRi8LHE4B8cszb2YQPEW09tWP6g,3497
|
|
54
|
+
StreamingCommunity/Src/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=8BOYNnVohKso987ICr6qSq7YqDOz3npTC7xqJHvsavk,3970
|
|
55
|
+
StreamingCommunity/Src/Api/Template/__init__.py,sha256=oyfd_4_g5p5q6mxb_rKwSsudZnTM3W3kg1tLwxg-v-Q,46
|
|
56
|
+
StreamingCommunity/Src/Api/Template/site.py,sha256=JCF10p4tpBAoI7_Qi9pYVKxMia03Cc4LdAXhBHXiIsA,2912
|
|
57
|
+
StreamingCommunity/Src/Api/Template/Class/SearchType.py,sha256=FtO8xDUGEeJgMWsK2Ab7ZzAFsncalTYL2oEYi8uCnuk,2531
|
|
58
|
+
StreamingCommunity/Src/Api/Template/Util/__init__.py,sha256=XuiD2ZSICw1KAxDHD7saNvHFFV3G3W65E7UiL8je2xE,198
|
|
59
|
+
StreamingCommunity/Src/Api/Template/Util/get_domain.py,sha256=134_fCnYPiL0m4hEU1JN8gsmkOw-rX-ecJ3Tg3d3bgE,4668
|
|
60
|
+
StreamingCommunity/Src/Api/Template/Util/manage_ep.py,sha256=iXuEvuOSPrgt0lJTCdtoRDKui6a-9HVXp1nQUA5XX28,5018
|
|
61
|
+
StreamingCommunity/Src/Api/Template/Util/recall_search.py,sha256=TurxJ046rMuraZEMxK_u_UxcYjAuuNHVFk2ktqkhcZc,1151
|
|
62
|
+
StreamingCommunity/Src/Lib/Downloader/__init__.py,sha256=JhbBh5hOnSM7VmtkxJ7zZ_FtWEC1JdnKThsSBjLV5FY,140
|
|
63
|
+
StreamingCommunity/Src/Lib/Downloader/HLS/downloader.py,sha256=rauZdRh2rTPjVGs5TX5y14klFEYdmRKIdj1FdEjQD1g,39602
|
|
64
|
+
StreamingCommunity/Src/Lib/Downloader/HLS/proxyes.py,sha256=wT0ypl7FiKkivo5kAs5wdG3bQS7PUTbKjR73PI4X8WE,3287
|
|
65
|
+
StreamingCommunity/Src/Lib/Downloader/HLS/segments.py,sha256=if6NSNd3UERZCRLDx5B9woumm51lFSOVBFeKgw7dBj4,20973
|
|
66
|
+
StreamingCommunity/Src/Lib/Downloader/MP4/downloader.py,sha256=PXlq4BdSqNMl0XiiacA-PdYgkJXycL5P-RtWmffymJM,5961
|
|
67
|
+
StreamingCommunity/Src/Lib/Downloader/TOR/downloader.py,sha256=QKi9CE-8fgx_K8hMJl5rB0szCW7lUG9VktDCcryq1z8,8467
|
|
68
|
+
StreamingCommunity/Src/Lib/Driver/driver_1.py,sha256=fdIYruWVxeETQkrPx5GfyhPqS5M7745ZIMQUu9O9W0c,1864
|
|
69
|
+
StreamingCommunity/Src/Lib/FFmpeg/__init__.py,sha256=Csrnk3QL_-xr9i1B0BOwcjsao1Qjxh8pXrcSHGIvQZs,133
|
|
70
|
+
StreamingCommunity/Src/Lib/FFmpeg/capture.py,sha256=BnEnKuvPtJtsd43BP7a7FbbeBiv_2OWjJFFJICSj-Bc,5461
|
|
71
|
+
StreamingCommunity/Src/Lib/FFmpeg/command.py,sha256=8q7-kKiOpef53E28-mNTi6blQ5em5ydiFZNx6s4rSR4,9873
|
|
72
|
+
StreamingCommunity/Src/Lib/FFmpeg/util.py,sha256=fTNwp7GOVGMC073Wjg-rqMmjKVGJRZ9C-5VGVLtrVTY,7905
|
|
73
|
+
StreamingCommunity/Src/Lib/M3U8/__init__.py,sha256=H_KS2eDd3kVXMziFJnD0FCPvPHEizaqfoA36ElTv_r8,170
|
|
74
|
+
StreamingCommunity/Src/Lib/M3U8/decryptor.py,sha256=xPzRA_yHg_-PsLA2vwQYdm1Ne1d6-spxqpjJox_9DCg,4773
|
|
75
|
+
StreamingCommunity/Src/Lib/M3U8/estimator.py,sha256=RMseRGfbbBufk5wkOKiQAlAb_DXU4695TZ_n8o-4QqA,6465
|
|
76
|
+
StreamingCommunity/Src/Lib/M3U8/parser.py,sha256=aKP6wQeep399qpHmXYhD1gTfKkHcet4JB-s-bvt5PRs,22891
|
|
77
|
+
StreamingCommunity/Src/Lib/M3U8/url_fixer.py,sha256=o6onAAghTVzhrxEh4gbRRkJOQRjdEl13HMQ9K9jc-ms,1624
|
|
78
|
+
StreamingCommunity/Src/Lib/TMBD/__init__.py,sha256=jSNsLuW4fBf1tGtIdz6fcRv1d5A-NiNnM_O0G6Hj30s,54
|
|
79
|
+
StreamingCommunity/Src/Lib/TMBD/obj_tmbd.py,sha256=SsvxM4z0xU1IsSrB9o2dpRfuRDUYQk3uRs7AseftPPI,1929
|
|
80
|
+
StreamingCommunity/Src/Lib/TMBD/tmdb.py,sha256=83WludGWCxKnrRNPy2s61K6ydP4XXM2TlvaOIVZVUrQ,11659
|
|
81
|
+
StreamingCommunity/Src/Upload/update.py,sha256=FfxTh5c-3C9kWDBNUw7ghxTHVJM_J2A3w5hnYYi62fU,2097
|
|
82
|
+
StreamingCommunity/Src/Upload/version.py,sha256=C62AuOgGi8FGVww-MOxh0UzI6hQdmbf5oDU3nGV_0Zk,171
|
|
83
|
+
StreamingCommunity/Src/Util/_jsonConfig.py,sha256=rgep8HI6XTt6hKh0_k2OSnyeMS3pQ_2bEoYSd5gpmJc,6797
|
|
84
|
+
StreamingCommunity/Src/Util/call_stack.py,sha256=bVYEjwLJnRNJ1tgfwClpyVcLKCTeTMHM2S6-HM2Ibfo,1375
|
|
85
|
+
StreamingCommunity/Src/Util/color.py,sha256=TWvoellnYd-oCTeU3bnXqkMf864KgF9YXwzjtI6rd4g,459
|
|
86
|
+
StreamingCommunity/Src/Util/console.py,sha256=xdGMbH38By9d4ugYMVJFaUrcMJW2krKZh0zbptA3SVQ,218
|
|
87
|
+
StreamingCommunity/Src/Util/headers.py,sha256=Gwuh0u0qjMWXdNZzRl8xM38zULDQf9hr_OV1-Dh_QGQ,4396
|
|
88
|
+
StreamingCommunity/Src/Util/logger.py,sha256=e-sP0a6Hue6fDaFdFtkozrvleiUZKwfJa6aphrZOtCk,1865
|
|
89
|
+
StreamingCommunity/Src/Util/message.py,sha256=FIWQrUETAiYrvlKiprGvC1GMxYDYGNbAKeXPLMCCTRw,1624
|
|
90
|
+
StreamingCommunity/Src/Util/os.py,sha256=jYzFINgRUwvwwOgrnKG6uWJ23wIr4xSt1uE6rjvEV2Q,13188
|
|
91
|
+
StreamingCommunity/Src/Util/table.py,sha256=8Dg34o5OPvB1xvTEZhgXyTcZevtLKrxrxs7GOc7c0Dg,5845
|
|
92
|
+
StreamingCommunity-1.7.6.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
93
|
+
StreamingCommunity-1.7.6.dist-info/METADATA,sha256=T7v1JbD91OLKgC1kznGoW52aSb7fpnNn7cKxvWT2wWA,8639
|
|
94
|
+
StreamingCommunity-1.7.6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
95
|
+
StreamingCommunity-1.7.6.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
|
|
96
|
+
StreamingCommunity-1.7.6.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
97
|
+
StreamingCommunity-1.7.6.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
StreamingCommunity
|