StreamingCommunity 2.2.0__py3-none-any.whl → 2.4.0__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/Api/Player/Helper/Vixcloud/util.py +15 -24
- StreamingCommunity/Api/Site/1337xx/site.py +9 -6
- StreamingCommunity/Api/Site/1337xx/title.py +2 -2
- StreamingCommunity/Api/Site/altadefinizionegratis/costant.py +19 -0
- StreamingCommunity/Api/Site/{altadefinizione → altadefinizionegratis}/film.py +2 -2
- StreamingCommunity/Api/Site/{altadefinizione → altadefinizionegratis}/site.py +28 -22
- StreamingCommunity/Api/Site/animeunity/__init__.py +1 -1
- StreamingCommunity/Api/Site/animeunity/costant.py +6 -2
- StreamingCommunity/Api/Site/animeunity/film_serie.py +3 -3
- StreamingCommunity/Api/Site/animeunity/site.py +29 -21
- StreamingCommunity/Api/Site/cb01new/costant.py +6 -2
- StreamingCommunity/Api/Site/cb01new/film.py +2 -2
- StreamingCommunity/Api/Site/cb01new/site.py +20 -13
- StreamingCommunity/Api/Site/ddlstreamitaly/costant.py +6 -2
- StreamingCommunity/Api/Site/ddlstreamitaly/series.py +2 -2
- StreamingCommunity/Api/Site/ddlstreamitaly/site.py +9 -5
- StreamingCommunity/Api/Site/guardaserie/costant.py +6 -2
- StreamingCommunity/Api/Site/guardaserie/series.py +2 -3
- StreamingCommunity/Api/Site/guardaserie/site.py +10 -6
- StreamingCommunity/Api/Site/ilcorsaronero/costant.py +6 -2
- StreamingCommunity/Api/Site/ilcorsaronero/site.py +22 -13
- StreamingCommunity/Api/Site/ilcorsaronero/title.py +3 -3
- StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py +1 -1
- StreamingCommunity/Api/Site/mostraguarda/costant.py +6 -2
- StreamingCommunity/Api/Site/mostraguarda/film.py +2 -2
- StreamingCommunity/Api/Site/streamingcommunity/costant.py +7 -3
- StreamingCommunity/Api/Site/streamingcommunity/film.py +3 -3
- StreamingCommunity/Api/Site/streamingcommunity/series.py +3 -3
- StreamingCommunity/Api/Site/streamingcommunity/site.py +30 -26
- StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py +24 -24
- StreamingCommunity/Api/Template/Util/get_domain.py +171 -142
- StreamingCommunity/Api/Template/site.py +1 -1
- StreamingCommunity/Lib/Downloader/HLS/downloader.py +14 -3
- StreamingCommunity/Lib/Downloader/HLS/segments.py +36 -22
- StreamingCommunity/Lib/Downloader/TOR/downloader.py +3 -3
- StreamingCommunity/Lib/M3U8/decryptor.py +1 -0
- StreamingCommunity/Lib/M3U8/estimator.py +2 -2
- StreamingCommunity/Lib/M3U8/url_fixer.py +6 -0
- StreamingCommunity/Lib/TMBD/tmdb.py +1 -1
- StreamingCommunity/Upload/version.py +1 -1
- StreamingCommunity/Util/_jsonConfig.py +43 -19
- StreamingCommunity/Util/ffmpeg_installer.py +31 -14
- StreamingCommunity/Util/headers.py +15 -2
- StreamingCommunity/Util/logger.py +9 -0
- StreamingCommunity/Util/os.py +100 -138
- StreamingCommunity/Util/table.py +6 -6
- StreamingCommunity/run.py +61 -7
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.4.0.dist-info}/METADATA +116 -35
- StreamingCommunity-2.4.0.dist-info/RECORD +92 -0
- StreamingCommunity/Api/Site/altadefinizione/costant.py +0 -15
- StreamingCommunity-2.2.0.dist-info/RECORD +0 -92
- /StreamingCommunity/Api/Site/{altadefinizione → altadefinizionegratis}/__init__.py +0 -0
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.4.0.dist-info}/LICENSE +0 -0
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.4.0.dist-info}/WHEEL +0 -0
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.4.0.dist-info}/entry_points.txt +0 -0
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.4.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: StreamingCommunity
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.4.0
|
|
4
4
|
Summary: UNKNOWN
|
|
5
5
|
Home-page: https://github.com/Lovi-0/StreamingCommunity
|
|
6
6
|
Author: Lovi-0
|
|
@@ -21,7 +21,7 @@ Requires-Dist: unidecode
|
|
|
21
21
|
Requires-Dist: jsbeautifier
|
|
22
22
|
Requires-Dist: pathvalidate
|
|
23
23
|
Requires-Dist: pycryptodomex
|
|
24
|
-
Requires-Dist: fake-useragent
|
|
24
|
+
Requires-Dist: fake-useragent
|
|
25
25
|
Requires-Dist: qbittorrent-api
|
|
26
26
|
Requires-Dist: python-qbittorrent
|
|
27
27
|
Requires-Dist: googlesearch-python
|
|
@@ -34,15 +34,9 @@ Requires-Dist: googlesearch-python
|
|
|
34
34
|
<a href="https://pypi.org/project/streamingcommunity">
|
|
35
35
|
<img src="https://img.shields.io/pypi/v/streamingcommunity?logo=pypi&labelColor=555555&style=for-the-badge" alt="PyPI"/>
|
|
36
36
|
</a>
|
|
37
|
-
<a href="https://www.python.org">
|
|
38
|
-
<img src="https://img.shields.io/badge/Python->=3.8-3776AB?style=for-the-badge&logo=python&logoColor=white" alt="Python"/>
|
|
39
|
-
</a>
|
|
40
37
|
<a href="https://www.paypal.com/donate/?hosted_button_id=UXTWMT8P6HE2C">
|
|
41
38
|
<img src="https://img.shields.io/badge/_-Donate-red.svg?logo=githubsponsors&labelColor=555555&style=for-the-badge" alt="Donate"/>
|
|
42
39
|
</a>
|
|
43
|
-
<a href="https://github.com/Lovi-0/StreamingCommunity/blob/main/LICENSE">
|
|
44
|
-
<img src="https://img.shields.io/badge/License-GPL_3.0-blue.svg?style=for-the-badge" alt="License"/>
|
|
45
|
-
</a>
|
|
46
40
|
<a href="https://github.com/Lovi-0/StreamingCommunity/commits">
|
|
47
41
|
<img src="https://img.shields.io/github/commit-activity/m/Lovi-0/StreamingCommunity?label=commits&style=for-the-badge" alt="Commits"/>
|
|
48
42
|
</a>
|
|
@@ -52,17 +46,11 @@ Requires-Dist: googlesearch-python
|
|
|
52
46
|
</p>
|
|
53
47
|
|
|
54
48
|
<p align="center">
|
|
55
|
-
<a href="https://
|
|
56
|
-
<img src="https://img.shields.io/
|
|
57
|
-
</a>
|
|
58
|
-
<a href="https://github.com/Lovi-0/StreamingCommunity/network/members">
|
|
59
|
-
<img src="https://img.shields.io/github/forks/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Forks"/>
|
|
60
|
-
</a>
|
|
61
|
-
<a href="https://github.com/Lovi-0/StreamingCommunity">
|
|
62
|
-
<img src="https://img.shields.io/github/languages/code-size/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Code Size"/>
|
|
49
|
+
<a href="https://github.com/Lovi-0/StreamingCommunity/blob/main/LICENSE">
|
|
50
|
+
<img src="https://img.shields.io/badge/License-GPL_3.0-blue.svg?style=for-the-badge" alt="License"/>
|
|
63
51
|
</a>
|
|
64
|
-
<a href="https://
|
|
65
|
-
<img src="https://img.shields.io/
|
|
52
|
+
<a href="https://pypi.org/project/streamingcommunity">
|
|
53
|
+
<img src="https://img.shields.io/pypi/dw/streamingcommunity?style=for-the-badge" alt="PyPI Downloads"/>
|
|
66
54
|
</a>
|
|
67
55
|
</p>
|
|
68
56
|
|
|
@@ -72,6 +60,7 @@ Requires-Dist: googlesearch-python
|
|
|
72
60
|
- 🛠️ [Installation](#installation)
|
|
73
61
|
- 📦 [PyPI Installation](#1-pypi-installation)
|
|
74
62
|
- 🔄 [Automatic Installation](#2-automatic-installation)
|
|
63
|
+
- 🔧 [Binary Location](#binary-location)
|
|
75
64
|
- 📝 [Manual Installation](#3-manual-installation)
|
|
76
65
|
- 💻 [Win 7](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Installation#win-7)
|
|
77
66
|
- 📱 [Termux](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Termux)
|
|
@@ -90,6 +79,22 @@ Requires-Dist: googlesearch-python
|
|
|
90
79
|
|
|
91
80
|
# Installation
|
|
92
81
|
|
|
82
|
+
<p align="center">
|
|
83
|
+
<a href="https://github.com/Lovi-0/StreamingCommunity/releases/latest/download/StreamingCommunity.exe">
|
|
84
|
+
<img src="https://img.shields.io/badge/-Windows_x64-blue.svg?style=for-the-badge&logo=windows" alt="Windows">
|
|
85
|
+
</a>
|
|
86
|
+
<a href="https://pypi.org/project/StreamingCommunity">
|
|
87
|
+
<img src="https://img.shields.io/badge/-PyPI-blue.svg?logo=pypi&labelColor=555555&style=for-the-badge" alt="PyPI">
|
|
88
|
+
</a>
|
|
89
|
+
<a href="https://github.com/Lovi-0/StreamingCommunity/releases/latest/download/StreamingCommunity.zip">
|
|
90
|
+
<img src="https://img.shields.io/badge/-Source_tar-green.svg?style=for-the-badge" alt="Source Tarball">
|
|
91
|
+
</a>
|
|
92
|
+
<a href="https://github.com/Lovi-0/StreamingCommunity/releases">
|
|
93
|
+
<img src="https://img.shields.io/badge/-All_Versions-lightgrey.svg?style=for-the-badge" alt="All Versions">
|
|
94
|
+
</a>
|
|
95
|
+
</p>
|
|
96
|
+
|
|
97
|
+
|
|
93
98
|
## 1. PyPI Installation
|
|
94
99
|
|
|
95
100
|
Install directly from PyPI:
|
|
@@ -114,7 +119,7 @@ Run the script:
|
|
|
114
119
|
python run_streaming.py
|
|
115
120
|
```
|
|
116
121
|
|
|
117
|
-
|
|
122
|
+
### Updating via PyPI
|
|
118
123
|
|
|
119
124
|
```bash
|
|
120
125
|
pip install --upgrade StreamingCommunity
|
|
@@ -169,6 +174,69 @@ source .venv/bin/activate && python test_run.py && deactivate
|
|
|
169
174
|
./test_run.py
|
|
170
175
|
```
|
|
171
176
|
|
|
177
|
+
## Binary Location
|
|
178
|
+
|
|
179
|
+
### Default Locations
|
|
180
|
+
- **Windows**: `C:\binary`
|
|
181
|
+
- **MacOS**: `~/Applications/binary`
|
|
182
|
+
- **Linux**: `~/.local/bin/binary`
|
|
183
|
+
|
|
184
|
+
You can customize these locations by following these steps for your operating system:
|
|
185
|
+
|
|
186
|
+
#### Windows
|
|
187
|
+
1. Move the binary folder from `C:\binary` to your desired location
|
|
188
|
+
2. Add the new path to Windows environment variables:
|
|
189
|
+
- Open Start menu and search for "Environment Variables"
|
|
190
|
+
- Click "Edit the system environment variables"
|
|
191
|
+
- Click "Environment Variables" button
|
|
192
|
+
- Under "System Variables", find and select "Path"
|
|
193
|
+
- Click "Edit"
|
|
194
|
+
- Add the new binary folder path
|
|
195
|
+
- Click "OK" to save changes
|
|
196
|
+
|
|
197
|
+
For detailed Windows PATH instructions, see the [Windows PATH guide](https://www.eukhost.com/kb/how-to-add-to-the-path-on-windows-10-and-windows-11/).
|
|
198
|
+
|
|
199
|
+
#### MacOS
|
|
200
|
+
1. Move the binary folder from `~/Applications/binary` to your desired location
|
|
201
|
+
2. Add the new path to your shell's configuration file:
|
|
202
|
+
```bash
|
|
203
|
+
# For bash (edit ~/.bash_profile)
|
|
204
|
+
export PATH="/your/custom/path:$PATH"
|
|
205
|
+
|
|
206
|
+
# For zsh (edit ~/.zshrc)
|
|
207
|
+
export PATH="/your/custom/path:$PATH"
|
|
208
|
+
```
|
|
209
|
+
3. Reload your shell configuration:
|
|
210
|
+
```bash
|
|
211
|
+
# For bash
|
|
212
|
+
source ~/.bash_profile
|
|
213
|
+
|
|
214
|
+
# For zsh
|
|
215
|
+
source ~/.zshrc
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
#### Linux
|
|
219
|
+
1. Move the binary folder from `~/.local/bin/binary` to your desired location
|
|
220
|
+
2. Add the new path to your shell's configuration file:
|
|
221
|
+
```bash
|
|
222
|
+
# For bash (edit ~/.bashrc)
|
|
223
|
+
export PATH="/your/custom/path:$PATH"
|
|
224
|
+
|
|
225
|
+
# For zsh (edit ~/.zshrc)
|
|
226
|
+
export PATH="/your/custom/path:$PATH"
|
|
227
|
+
```
|
|
228
|
+
3. Apply the changes:
|
|
229
|
+
```bash
|
|
230
|
+
source ~/.bashrc # for bash
|
|
231
|
+
# or
|
|
232
|
+
source ~/.zshrc # for zsh
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
> [!IMPORTANT]
|
|
236
|
+
> After moving the binary folder, ensure that all executables (ffmpeg, ffprobe, ffplay) are present in the new location and have the correct permissions:
|
|
237
|
+
> - Windows: `.exe` extensions required
|
|
238
|
+
> - MacOS/Linux: Ensure files have execute permissions (`chmod +x filename`)
|
|
239
|
+
|
|
172
240
|
## 3. Manual Installation
|
|
173
241
|
|
|
174
242
|
### Requirements 📋
|
|
@@ -229,6 +297,8 @@ The configuration file is divided into several main sections:
|
|
|
229
297
|
"movie_folder_name": "Movie",
|
|
230
298
|
"serie_folder_name": "TV",
|
|
231
299
|
"map_episode_name": "%(tv_name)_S%(season)E%(episode)_%(episode_name)",
|
|
300
|
+
"add_siteName": false,
|
|
301
|
+
"disable_searchDomain": false,
|
|
232
302
|
"not_close": false
|
|
233
303
|
}
|
|
234
304
|
```
|
|
@@ -256,7 +326,10 @@ The configuration file is divided into several main sections:
|
|
|
256
326
|
* `%(episode_name)` : Is the name of the episode
|
|
257
327
|
`<br/><br/>`
|
|
258
328
|
|
|
259
|
-
- `
|
|
329
|
+
- `add_siteName`: If set to true, appends the site_name to the root path before the movie and serie folders.
|
|
330
|
+
- `disable_searchDomain`: If set to true, disables the search for a new domain for all sites.
|
|
331
|
+
- `not_close`: If set to true, keeps the program running after the download is complete.
|
|
332
|
+
|
|
260
333
|
|
|
261
334
|
### qBittorrent Configuration
|
|
262
335
|
|
|
@@ -273,7 +346,6 @@ The configuration file is divided into several main sections:
|
|
|
273
346
|
|
|
274
347
|
To enable qBittorrent integration, follow the setup guide [here](https://github.com/lgallard/qBittorrent-Controller/wiki/How-to-enable-the-qBittorrent-Web-UI).
|
|
275
348
|
|
|
276
|
-
<br>
|
|
277
349
|
|
|
278
350
|
## REQUESTS Settings
|
|
279
351
|
|
|
@@ -287,7 +359,6 @@ The configuration file is divided into several main sections:
|
|
|
287
359
|
- `timeout`: Maximum timeout (in seconds) for each request
|
|
288
360
|
- `max_retry`: Number of retry attempts per segment during M3U8 index download
|
|
289
361
|
|
|
290
|
-
<br>
|
|
291
362
|
|
|
292
363
|
## M3U8_DOWNLOAD Settings
|
|
293
364
|
|
|
@@ -308,10 +379,9 @@ The configuration file is divided into several main sections:
|
|
|
308
379
|
- `cleanup_tmp_folder`: Remove temporary .ts files after download
|
|
309
380
|
|
|
310
381
|
> [!IMPORTANT]
|
|
311
|
-
> Set `tqdm_use_large_bar` to `false` when using Termux or terminals with limited width to prevent
|
|
382
|
+
> Set `tqdm_use_large_bar` to `false` when using Termux or terminals with limited width to prevent network monitoring issues
|
|
312
383
|
|
|
313
384
|
|
|
314
|
-
<br>
|
|
315
385
|
|
|
316
386
|
### Language Settings
|
|
317
387
|
|
|
@@ -331,6 +401,10 @@ forced-ita hin - Hindi pol - Polish tur - Turkish
|
|
|
331
401
|
ind - Indonesian vie - Vietnamese
|
|
332
402
|
```
|
|
333
403
|
|
|
404
|
+
> [!NOTE]
|
|
405
|
+
> When using subtitles on Windows, please note that the default Windows Media Player may not display them correctly. We recommend using VLC Media Player for proper subtitle display and optimal playback experience.
|
|
406
|
+
|
|
407
|
+
|
|
334
408
|
> [!IMPORTANT]
|
|
335
409
|
> Language code availability may vary by site. Some platforms might:
|
|
336
410
|
>
|
|
@@ -348,6 +422,14 @@ forced-ita hin - Hindi pol - Polish tur - Turkish
|
|
|
348
422
|
> "specific_list_subtitles": ["ita", "eng", "spa"]
|
|
349
423
|
> ```
|
|
350
424
|
|
|
425
|
+
For the best viewing experience, we recommend using VLC Media Player:
|
|
426
|
+
- Supports all video formats and codecs
|
|
427
|
+
- Properly displays embedded subtitles
|
|
428
|
+
- Available for all major operating systems
|
|
429
|
+
- Free and open-source
|
|
430
|
+
|
|
431
|
+
You can download VLC Media Player from the [official website](https://www.videolan.org/vlc/).
|
|
432
|
+
|
|
351
433
|
## M3U8_PARSER Settings
|
|
352
434
|
|
|
353
435
|
```json
|
|
@@ -360,7 +442,6 @@ forced-ita hin - Hindi pol - Polish tur - Turkish
|
|
|
360
442
|
- `force_resolution`: Force specific resolution (-1 for best available, or specify 1080, 720, 360)
|
|
361
443
|
- `get_only_link`: Return M3U8 playlist/index URL instead of downloading
|
|
362
444
|
|
|
363
|
-
<br>
|
|
364
445
|
|
|
365
446
|
# COMMAND
|
|
366
447
|
|
|
@@ -376,7 +457,6 @@ forced-ita hin - Hindi pol - Polish tur - Turkish
|
|
|
376
457
|
- Enter a season number followed by `-*` to download from that season to the end.
|
|
377
458
|
* **Example:** `3-*` will download from *Season 3* to the final season.
|
|
378
459
|
|
|
379
|
-
<br>
|
|
380
460
|
|
|
381
461
|
# Docker
|
|
382
462
|
|
|
@@ -415,15 +495,16 @@ The `run-container` command mounts also the `config.json` file, so any change to
|
|
|
415
495
|
|
|
416
496
|
| Website | Status |
|
|
417
497
|
|:-------------------|:------:|
|
|
418
|
-
| 1337xx
|
|
419
|
-
|
|
|
420
|
-
| AnimeUnity
|
|
421
|
-
| Ilcorsaronero
|
|
422
|
-
| CB01New
|
|
423
|
-
| DDLStreamItaly
|
|
424
|
-
| GuardaSerie
|
|
425
|
-
| MostraGuarda
|
|
426
|
-
| StreamingCommunity | ✅ |
|
|
498
|
+
| [1337xx](https://1337xx.to/) | ✅ |
|
|
499
|
+
| [AltadefinizioneGratis](https://altadefinizionegratis.info/) | ✅ |
|
|
500
|
+
| [AnimeUnity](https://animeunity.so/) | ✅ |
|
|
501
|
+
| [Ilcorsaronero](https://ilcorsaronero.link/) | ✅ |
|
|
502
|
+
| [CB01New](https://cb01new.video/) | ✅ |
|
|
503
|
+
| [DDLStreamItaly](https://ddlstreamitaly.co/) | ✅ |
|
|
504
|
+
| [GuardaSerie](https://guardaserie.academy/) | ✅ |
|
|
505
|
+
| [MostraGuarda](https://mostraguarda.stream/) | ✅ |
|
|
506
|
+
| [StreamingCommunity](https://streamingcommunity.ooo/) | ✅ |
|
|
507
|
+
|
|
427
508
|
|
|
428
509
|
# Tutorials
|
|
429
510
|
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
StreamingCommunity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
StreamingCommunity/run.py,sha256=cWm5QFKMQU7zVuNJzlL7Fv2fT1Apl9JVHm2ZBDiKYh4,9011
|
|
3
|
+
StreamingCommunity/Api/Player/ddl.py,sha256=cRPb3sfX5o_rkJ33qe7rDGmlgRgYMr0LTmdZLCsbO90,2409
|
|
4
|
+
StreamingCommunity/Api/Player/maxstream.py,sha256=0NwzyTFrIWC21xZytmg4Pl_ShAPfqIOXNU6XpEy9KuY,5304
|
|
5
|
+
StreamingCommunity/Api/Player/supervideo.py,sha256=gNoAo_LVZWycfIzmK28erWRTXwNDV6FKJSLJ2Lrw_Ok,6118
|
|
6
|
+
StreamingCommunity/Api/Player/vixcloud.py,sha256=pTl60wxSQmyCWjhv1RfHST_hacnwT3N9WnYnUJwKank,9498
|
|
7
|
+
StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=HniFPpcF1qtMAT8z5bf4noHJO85x8wRke6KUxB5r-F0,4438
|
|
8
|
+
StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=TbDbL09oxrA_-oH-cuKPTmnT51rsP1McVHKO0jgxXC0,4863
|
|
9
|
+
StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=gZFNPJahddRTELSdO4_-yt50wl0cZRDuxdRqIhYzSiQ,1219
|
|
10
|
+
StreamingCommunity/Api/Site/1337xx/costant.py,sha256=3jDI0qlysmtfiZIAciNA-pBLSza5GBYKZlONyMpb-FI,451
|
|
11
|
+
StreamingCommunity/Api/Site/1337xx/site.py,sha256=L5wvdb6S_FpEDBzUNMYPMdmSgHkRRTjGh4ULo6bAQeU,2873
|
|
12
|
+
StreamingCommunity/Api/Site/1337xx/title.py,sha256=pQAn4Fe3HQYMvNOxG9YPpnBQQpca2GT0_akEaodFtUk,1958
|
|
13
|
+
StreamingCommunity/Api/Site/altadefinizionegratis/__init__.py,sha256=sTUnun_Ew5YrxmpYZvwHV_qj-NIYTOpJOujwN0O7iU8,1210
|
|
14
|
+
StreamingCommunity/Api/Site/altadefinizionegratis/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
|
|
15
|
+
StreamingCommunity/Api/Site/altadefinizionegratis/film.py,sha256=96oNkwUZBoQRN2mkwrlgRJ71wrEt4JBgyCe9lcKkNUs,2231
|
|
16
|
+
StreamingCommunity/Api/Site/altadefinizionegratis/site.py,sha256=Male8DG7nfF-i_MKt2vKcwNYBS2sRUIkN9FwwRitxRE,2972
|
|
17
|
+
StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=oTOYbtiwwNUiopzX4ZJCODQTZ528GAbLLaoNqsQOZmw,1288
|
|
18
|
+
StreamingCommunity/Api/Site/animeunity/costant.py,sha256=vH-74s9DLqMVTXwXsQe8_cTxWwpAkSv3O-xoiupEfSI,764
|
|
19
|
+
StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=662wBBBGeJkTICeSc4f1g5nPzINKvzCseWgaYnGaceg,4127
|
|
20
|
+
StreamingCommunity/Api/Site/animeunity/site.py,sha256=-uuTOt1Kg79Mu893OmSujaqDjIOiYXQA_5S0BtCXqsc,5519
|
|
21
|
+
StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=Gv0xvTJMHru3YExAqQ-ZFfwIxs_227mB3d0JpsI3oAY,2983
|
|
22
|
+
StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=ClPCBPR6dCdVIZvXknUNum86AOkxCycIKzNl4ZJGVPk,1230
|
|
23
|
+
StreamingCommunity/Api/Site/cb01new/costant.py,sha256=leKXcU72IMN-zDmfiz4fgncjGnxj1AGqmnv0FYJsY0k,779
|
|
24
|
+
StreamingCommunity/Api/Site/cb01new/film.py,sha256=OmSLiItgIR4iie3eLhwLLvJXRwYtSKB2H3TqpfqlCN0,2246
|
|
25
|
+
StreamingCommunity/Api/Site/cb01new/site.py,sha256=eGPp0enGb-c2sBVVaRuAC6ykOPoPdiae-iFMm4BRScU,2447
|
|
26
|
+
StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=3vjwaEXlnrDAProWxyWpkN2Zg528XnpNwUrOvyTHPTY,1374
|
|
27
|
+
StreamingCommunity/Api/Site/ddlstreamitaly/costant.py,sha256=6_ezKVvuGInDC7MxSxmQH3i-MGNu96cKy4DGb5OqT5o,841
|
|
28
|
+
StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=zcHEU7oBL8MVBUPxLOONX6D9d9Si9OzZa1aI3RPL8Ao,4245
|
|
29
|
+
StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=ffxgUxexE-EI5kyzLqS8FQVMuH4ro9athRtIRAxMCSM,3102
|
|
30
|
+
StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=f7uA3VTANmWnLvYhjxMjzKRxU6FTgH2H8MSntWgc8jw,2652
|
|
31
|
+
StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=1NUo7z1OqDQ-DmXj6Db303SeC-0OQ_ElKcxo73JbpOM,1221
|
|
32
|
+
StreamingCommunity/Api/Site/guardaserie/costant.py,sha256=xzfz7DFH872iThs09z8jV-r8y-QkQLC7tmuMvF9YTwk,779
|
|
33
|
+
StreamingCommunity/Api/Site/guardaserie/series.py,sha256=g3sIFdeTFwNr3wyNJ4NgiS9FSSgLUpjz9QK48sXG0ck,6846
|
|
34
|
+
StreamingCommunity/Api/Site/guardaserie/site.py,sha256=phfXe4UyGv-_ebtX-hXL7YuZJ_tzfy4MiKTBrA9Ggs4,2879
|
|
35
|
+
StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=Os4lKYQB8PT1b-jzozRIpdovGh4gUQuXrPEHyLriYio,3399
|
|
36
|
+
StreamingCommunity/Api/Site/ilcorsaronero/__init__.py,sha256=JBvYZqLlk5nckjYRApX5AZ58OfxF-yTTu6SE54F49Ms,1248
|
|
37
|
+
StreamingCommunity/Api/Site/ilcorsaronero/costant.py,sha256=2hSZ5m2CB23IV3HsSClx1yzHhjQsxcjV3gicuWfsQyE,777
|
|
38
|
+
StreamingCommunity/Api/Site/ilcorsaronero/site.py,sha256=_LD28s8zW8FfIq6p8Dg4qaZ0ogDLq-mQ59P3X3hGH2s,2240
|
|
39
|
+
StreamingCommunity/Api/Site/ilcorsaronero/title.py,sha256=BGmBS4zNldfxtNBhPAgDtId0QPcLnEyHjTBstt0lJqU,1354
|
|
40
|
+
StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py,sha256=1005qQmwCyaQXqn0_d2IYSG-nRe_B3k8yUijfVLlMnQ,5263
|
|
41
|
+
StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=0HRPWgz4pFpVR6_mUQy8SLGcUgQdseVrH-QqnfKlxW4,1177
|
|
42
|
+
StreamingCommunity/Api/Site/mostraguarda/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
|
|
43
|
+
StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=KzlA2auJVHSA-r4YTtMOzui1vBTKftwQnm4RJmbwkHs,3031
|
|
44
|
+
StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=TF8q_xHPXmwEkhDj3MS8xOVHgRQRmK-WNo0pQHChV74,1487
|
|
45
|
+
StreamingCommunity/Api/Site/streamingcommunity/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
|
|
46
|
+
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=phNKLUnMSwAMhu8-1nk1LPY8AnEcCUUZW03ofa2Q3O8,2317
|
|
47
|
+
StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=6JSePuk71-F_soks1g058mb4PYjID4HAE0Y_8ZhOyuY,7397
|
|
48
|
+
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=dA0f4FMMTMFv3zeDxjpgO2pMvX3Nz4oUlTOKmgsAay8,4127
|
|
49
|
+
StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=SQYgKFKRfyzjtJdXWfUg94JMMWddPESqbEY1Ga1Uii8,4331
|
|
50
|
+
StreamingCommunity/Api/Template/__init__.py,sha256=lhVpudlILM1L9iBZ_7vfYwgKyrdR1OWeLvk364-fJpU,48
|
|
51
|
+
StreamingCommunity/Api/Template/site.py,sha256=FR-tCGnrGtrL5CNOL2MvUyJVn0lx-d1-KQujnY2Gy6A,3021
|
|
52
|
+
StreamingCommunity/Api/Template/Class/SearchType.py,sha256=lJ054oi7baFU8HoXzq_mO4foRz0wtF9GIGOOFS8VpmY,2632
|
|
53
|
+
StreamingCommunity/Api/Template/Util/__init__.py,sha256=e-206LT2iAnL9I21fR_1FRm8F3WsbBRrUmraPP2Xfzo,202
|
|
54
|
+
StreamingCommunity/Api/Template/Util/get_domain.py,sha256=KhQNE05OfhpGKNSHY3KCGfgFMHVJw8f3UR-craV103k,7320
|
|
55
|
+
StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=TkeRH8120Bsu7gTOJb2GRdZI6LZmgYCD60tQVruwkvI,6697
|
|
56
|
+
StreamingCommunity/Api/Template/Util/recall_search.py,sha256=N-h00R2S8rQud3mNtUmaakK_8d9e5YxgHv4QwcJ4aZw,1184
|
|
57
|
+
StreamingCommunity/Lib/Downloader/__init__.py,sha256=vAn-rpmlSmojvz4Quv47A5HLq4yBR_7noy4r6hqk0OQ,144
|
|
58
|
+
StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=eHnsP4kY02ZNa8G77QKHBMC06nbjtX-prucPHKssW8A,40141
|
|
59
|
+
StreamingCommunity/Lib/Downloader/HLS/proxyes.py,sha256=Mrs5Mr6ATv-6BUS7CLcZjw3JNH7g_XOz7boeB1oQAQ8,3385
|
|
60
|
+
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=31U-l8zNAyZdT7bOL6P8qrZwtIKcGbB0nE7SHot_b_8,23162
|
|
61
|
+
StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=gWhNHhL5f3bXAGUaOlH2wCwda0sKi-R9s6PxOIp7LrU,6028
|
|
62
|
+
StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=Jo7qdb4C51v5zbwfRpKPsG5x38oLMWer6l1sK12TXoM,11525
|
|
63
|
+
StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=0KehwaTYL72PJaJJo2fzveGgc9F2-abIk7w6gXsfX1w,135
|
|
64
|
+
StreamingCommunity/Lib/FFmpeg/capture.py,sha256=YptVE5Ff6-hJXmsARxtXclWXmVl16y6QLR-VMybBaEg,5601
|
|
65
|
+
StreamingCommunity/Lib/FFmpeg/command.py,sha256=EfI3Q4tQkV7XmKWx0eBDnuIhn0O_lfPiAiI5IET3nLk,10289
|
|
66
|
+
StreamingCommunity/Lib/FFmpeg/util.py,sha256=QTtBaFdrUa5CFSPq1ycr3_zw81A7zVRmQN7FoxUwuR8,8341
|
|
67
|
+
StreamingCommunity/Lib/M3U8/__init__.py,sha256=sD2VIslF43OrudA1r-9xkSfUvSblr1LOZpaIM89F6M4,175
|
|
68
|
+
StreamingCommunity/Lib/M3U8/decryptor.py,sha256=y2YLw_z5h2UG4-AAHSRQVgNnWra9pSPYW1bB3rrGOjs,6529
|
|
69
|
+
StreamingCommunity/Lib/M3U8/estimator.py,sha256=fG34nlnz7ida0-EeZgnY2-nF2MX4yiStarp84JEblAA,9610
|
|
70
|
+
StreamingCommunity/Lib/M3U8/parser.py,sha256=xmyCU4AYGIOUheTZ4OBPmQl_R4dJ3Y72i9UUa6_aErA,23553
|
|
71
|
+
StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=PWHdooOpXR2XNzsgniuyYL-w2YApO75s8Y1kEu_M88w,1846
|
|
72
|
+
StreamingCommunity/Lib/TMBD/__init__.py,sha256=b3yUqfeBFpnKH-MScrZ3r90cpXc2ufCC-El3whK1zk8,55
|
|
73
|
+
StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=HEL3jAqUYtVgX7GCaw60EAD3JGvEJLOQXfD6lRYEjxA,1968
|
|
74
|
+
StreamingCommunity/Lib/TMBD/tmdb.py,sha256=bHaRO073fmVMALY9S7N6_kiG3fhapKR_5fY6PaCBMXk,12026
|
|
75
|
+
StreamingCommunity/Upload/update.py,sha256=ly2E4gf5RCkhlHvDyVNP57jkGGH41V-UHLYwBwgypP4,2324
|
|
76
|
+
StreamingCommunity/Upload/version.py,sha256=lv62mPjvxVtG4itheprFzsI5o4X92Ric5uOxEU-oA28,175
|
|
77
|
+
StreamingCommunity/Util/_jsonConfig.py,sha256=i-AIu66BJ1neExPumcasvfC7QbjWpWGr9071r9-19k0,7843
|
|
78
|
+
StreamingCommunity/Util/call_stack.py,sha256=zuYbO8dV8bCa7fCdtaKQYuheA5K7BkTm3Oj8JA6GCpM,1417
|
|
79
|
+
StreamingCommunity/Util/color.py,sha256=1iQUf5xDp5XKKbXl9MvKEXJvv44Zf0P4J2Nu5ATIId8,479
|
|
80
|
+
StreamingCommunity/Util/console.py,sha256=bXP_iibXMpRIJ_zs03xFmSbkvMP3SguIuEUJZovoOqw,230
|
|
81
|
+
StreamingCommunity/Util/ffmpeg_installer.py,sha256=LDNBugf5nGuNHB5_Al9BFPiFDc9vUrUodNeAilOJwmA,14718
|
|
82
|
+
StreamingCommunity/Util/headers.py,sha256=igBcdy99BlQbMoBprfB4FfCX9DBcgci6Mlm_pe3Fv6o,4886
|
|
83
|
+
StreamingCommunity/Util/logger.py,sha256=J-UTRHT4-jfmdEWozsTRD0nfvLHVcXsNO59WGnU7cEg,2173
|
|
84
|
+
StreamingCommunity/Util/message.py,sha256=pgUf50z4kSJjKHBlBKn5bd26xlAAEvlLiMs9dvcvJ_s,3675
|
|
85
|
+
StreamingCommunity/Util/os.py,sha256=zqDlFq5CEOOhR14lStYogXJ78UlMv2xz2nakpHbpumw,18607
|
|
86
|
+
StreamingCommunity/Util/table.py,sha256=kXCx1zT9jaXQJuBG5oJBkvDJh3JL-f5x5OYaTOMc14o,8624
|
|
87
|
+
StreamingCommunity-2.4.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
88
|
+
StreamingCommunity-2.4.0.dist-info/METADATA,sha256=VbXenE7urWmsOMwCLuq9dyFajpbBLfqRIztavUTJ7C8,16766
|
|
89
|
+
StreamingCommunity-2.4.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
90
|
+
StreamingCommunity-2.4.0.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
|
|
91
|
+
StreamingCommunity-2.4.0.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
92
|
+
StreamingCommunity-2.4.0.dist-info/RECORD,,
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# 26.05.24
|
|
2
|
-
|
|
3
|
-
import os
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
# Internal utilities
|
|
7
|
-
from StreamingCommunity.Util._jsonConfig import config_manager
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
SITE_NAME = os.path.basename(os.path.dirname(os.path.abspath(__file__)))
|
|
11
|
-
ROOT_PATH = config_manager.get('DEFAULT', 'root_path')
|
|
12
|
-
DOMAIN_NOW = config_manager.get_dict('SITE', SITE_NAME)['domain']
|
|
13
|
-
|
|
14
|
-
SERIES_FOLDER = config_manager.get('DEFAULT', 'serie_folder_name')
|
|
15
|
-
MOVIE_FOLDER = config_manager.get('DEFAULT', 'movie_folder_name')
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
StreamingCommunity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
StreamingCommunity/run.py,sha256=bi57FYyAS49NCXObiJpwunGbnpRzXG0EpLjBOq86hjQ,6418
|
|
3
|
-
StreamingCommunity/Api/Player/ddl.py,sha256=cRPb3sfX5o_rkJ33qe7rDGmlgRgYMr0LTmdZLCsbO90,2409
|
|
4
|
-
StreamingCommunity/Api/Player/maxstream.py,sha256=0NwzyTFrIWC21xZytmg4Pl_ShAPfqIOXNU6XpEy9KuY,5304
|
|
5
|
-
StreamingCommunity/Api/Player/supervideo.py,sha256=gNoAo_LVZWycfIzmK28erWRTXwNDV6FKJSLJ2Lrw_Ok,6118
|
|
6
|
-
StreamingCommunity/Api/Player/vixcloud.py,sha256=pTl60wxSQmyCWjhv1RfHST_hacnwT3N9WnYnUJwKank,9498
|
|
7
|
-
StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=HniFPpcF1qtMAT8z5bf4noHJO85x8wRke6KUxB5r-F0,4438
|
|
8
|
-
StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=4DomUZ6qg_GGCIfQ38-CKrO24zyzm8voJgv8OiMxDbw,5257
|
|
9
|
-
StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=gZFNPJahddRTELSdO4_-yt50wl0cZRDuxdRqIhYzSiQ,1219
|
|
10
|
-
StreamingCommunity/Api/Site/1337xx/costant.py,sha256=3jDI0qlysmtfiZIAciNA-pBLSza5GBYKZlONyMpb-FI,451
|
|
11
|
-
StreamingCommunity/Api/Site/1337xx/site.py,sha256=Cn6DC5Od89f8xj22x2NPUgAPlBmWEgXG5J3Aa810Pok,2689
|
|
12
|
-
StreamingCommunity/Api/Site/1337xx/title.py,sha256=lGJCxmlWvSWtxn69ClOCA4e_zbtHk_otHV7DiSaKcLo,1980
|
|
13
|
-
StreamingCommunity/Api/Site/altadefinizione/__init__.py,sha256=sTUnun_Ew5YrxmpYZvwHV_qj-NIYTOpJOujwN0O7iU8,1210
|
|
14
|
-
StreamingCommunity/Api/Site/altadefinizione/costant.py,sha256=bxFBx_dljZM8x4nxig8pg35ylDQnR4NNr2SV3_S7Lg0,451
|
|
15
|
-
StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=aKVnn-7xdxnWJZvkDZwbxVXP-vmZ4RN3jIIBivEAcY0,2253
|
|
16
|
-
StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=JqNiP4Rqmn7zLALKBIAv0U_KY6uLYvGgg4_6Dw77SKU,2883
|
|
17
|
-
StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=rcG40DnZPn3vvniohYo5SgyGNTZY24XXfV5bDAEpTWE,1300
|
|
18
|
-
StreamingCommunity/Api/Site/animeunity/costant.py,sha256=bxFBx_dljZM8x4nxig8pg35ylDQnR4NNr2SV3_S7Lg0,451
|
|
19
|
-
StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=clYVjrZRKjWRnJCAvsLEEAfKMtPN9s7pgCgAx64eJuU,4162
|
|
20
|
-
StreamingCommunity/Api/Site/animeunity/site.py,sha256=WYfPtlaInQuV98Vc7CEFeRSri3EduC9ix6niVXJTnw4,5306
|
|
21
|
-
StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=Gv0xvTJMHru3YExAqQ-ZFfwIxs_227mB3d0JpsI3oAY,2983
|
|
22
|
-
StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=ClPCBPR6dCdVIZvXknUNum86AOkxCycIKzNl4ZJGVPk,1230
|
|
23
|
-
StreamingCommunity/Api/Site/cb01new/costant.py,sha256=EcUm_oH28CGbi5Dm2sBBAHJ1ywzn6R6mwk-Rx8mj7aQ,453
|
|
24
|
-
StreamingCommunity/Api/Site/cb01new/film.py,sha256=uc_SCS645rtwyYCofnzMj7_xc5tna1R4-hHdFHmo9T8,2268
|
|
25
|
-
StreamingCommunity/Api/Site/cb01new/site.py,sha256=dDv9P9GWtL07eygwndrPsPVmPd0kueeAn2vLPw4vHCc,2153
|
|
26
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=3vjwaEXlnrDAProWxyWpkN2Zg528XnpNwUrOvyTHPTY,1374
|
|
27
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/costant.py,sha256=r-rc_9dIFkfFZwJmY3noG1LgkKgHDxEEzQY-8aWj3dI,515
|
|
28
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=QMXO7312R3M6HylF-3Y_SY7MQVgZLBq0dcSb10eNROk,4267
|
|
29
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=0UfXLlABh7-ejU2cRTVsWPAPLaARbF6xu1PV4kyZvG4,2903
|
|
30
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=f7uA3VTANmWnLvYhjxMjzKRxU6FTgH2H8MSntWgc8jw,2652
|
|
31
|
-
StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=1NUo7z1OqDQ-DmXj6Db303SeC-0OQ_ElKcxo73JbpOM,1221
|
|
32
|
-
StreamingCommunity/Api/Site/guardaserie/costant.py,sha256=OOxqZVqlZ9XcdrOLLOz4U7MA2SrRbZ_qvvlGpuQzczo,453
|
|
33
|
-
StreamingCommunity/Api/Site/guardaserie/series.py,sha256=6qaeIYZrk8b1nC-B0D0Nkn3Zi1YpGTsXrX5ZMhAqO-c,6881
|
|
34
|
-
StreamingCommunity/Api/Site/guardaserie/site.py,sha256=2f_Q3D25bf0vNAx0XgPRTcay0QeWOm8espzDo9Lp3EA,2632
|
|
35
|
-
StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=Os4lKYQB8PT1b-jzozRIpdovGh4gUQuXrPEHyLriYio,3399
|
|
36
|
-
StreamingCommunity/Api/Site/ilcorsaronero/__init__.py,sha256=JBvYZqLlk5nckjYRApX5AZ58OfxF-yTTu6SE54F49Ms,1248
|
|
37
|
-
StreamingCommunity/Api/Site/ilcorsaronero/costant.py,sha256=3jDI0qlysmtfiZIAciNA-pBLSza5GBYKZlONyMpb-FI,451
|
|
38
|
-
StreamingCommunity/Api/Site/ilcorsaronero/site.py,sha256=dkNOUZanaPtQJIrOskzOC4cEOHFG3gnwH5RFYaw_ERU,1812
|
|
39
|
-
StreamingCommunity/Api/Site/ilcorsaronero/title.py,sha256=5cPMiBWoZPUerS2aI_6qO14hA14ztW-cWkaIInUYBlI,1377
|
|
40
|
-
StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py,sha256=PYV_OOU8KyO9ysVchfuFNfikCGmyE-NHknhGB64XOsw,5258
|
|
41
|
-
StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=0HRPWgz4pFpVR6_mUQy8SLGcUgQdseVrH-QqnfKlxW4,1177
|
|
42
|
-
StreamingCommunity/Api/Site/mostraguarda/costant.py,sha256=bxFBx_dljZM8x4nxig8pg35ylDQnR4NNr2SV3_S7Lg0,451
|
|
43
|
-
StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=R93viJqWom4xMsvG-yZqi36bnTlxkSGyW5AbmR0vRyE,3053
|
|
44
|
-
StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=TF8q_xHPXmwEkhDj3MS8xOVHgRQRmK-WNo0pQHChV74,1487
|
|
45
|
-
StreamingCommunity/Api/Site/streamingcommunity/costant.py,sha256=XEksndtxSC8As-r15f0hRuFAum-CjseegrVjFYOc_XY,436
|
|
46
|
-
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=dI6NHtsBitVU8rJsdwo9u_WXSoG-uWrFDMWxqYvNmPQ,2339
|
|
47
|
-
StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=-oEprxWV55XWK2fz4CyP-KtdGt68WhVZGZsyiQ6KkTY,7393
|
|
48
|
-
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=6nW5USa6X5xiZvEHMRKipjZzsV__f8iV1Hx8dqEW2w0,3902
|
|
49
|
-
StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=sNK61c1V6ULTk2kJFBOq3q_jzv281gfE52cjh7Oufsg,4313
|
|
50
|
-
StreamingCommunity/Api/Template/__init__.py,sha256=lhVpudlILM1L9iBZ_7vfYwgKyrdR1OWeLvk364-fJpU,48
|
|
51
|
-
StreamingCommunity/Api/Template/site.py,sha256=Xk_XpZ97xDUhGeiwo-52b7h1kOVsRQVdCqoXcMs2zHk,2995
|
|
52
|
-
StreamingCommunity/Api/Template/Class/SearchType.py,sha256=lJ054oi7baFU8HoXzq_mO4foRz0wtF9GIGOOFS8VpmY,2632
|
|
53
|
-
StreamingCommunity/Api/Template/Util/__init__.py,sha256=e-206LT2iAnL9I21fR_1FRm8F3WsbBRrUmraPP2Xfzo,202
|
|
54
|
-
StreamingCommunity/Api/Template/Util/get_domain.py,sha256=HFV5R-D6Nu0yhP19PCRSZOSFvvNq5FKWg9lHd1juTxI,6479
|
|
55
|
-
StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=TkeRH8120Bsu7gTOJb2GRdZI6LZmgYCD60tQVruwkvI,6697
|
|
56
|
-
StreamingCommunity/Api/Template/Util/recall_search.py,sha256=N-h00R2S8rQud3mNtUmaakK_8d9e5YxgHv4QwcJ4aZw,1184
|
|
57
|
-
StreamingCommunity/Lib/Downloader/__init__.py,sha256=vAn-rpmlSmojvz4Quv47A5HLq4yBR_7noy4r6hqk0OQ,144
|
|
58
|
-
StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=_3kXihkLDChHIXlRzgN0o0prgyduONx7K7DE0pJm23Y,39919
|
|
59
|
-
StreamingCommunity/Lib/Downloader/HLS/proxyes.py,sha256=Mrs5Mr6ATv-6BUS7CLcZjw3JNH7g_XOz7boeB1oQAQ8,3385
|
|
60
|
-
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=1FpPscAT-MYkM2YIty793A3-NJdBuLbkIpoyfRJyUxo,22389
|
|
61
|
-
StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=gWhNHhL5f3bXAGUaOlH2wCwda0sKi-R9s6PxOIp7LrU,6028
|
|
62
|
-
StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=67RDi3Er5xpoHFIn11sGcCB1xgIEGE-Nhn9wqDfmGak,11617
|
|
63
|
-
StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=0KehwaTYL72PJaJJo2fzveGgc9F2-abIk7w6gXsfX1w,135
|
|
64
|
-
StreamingCommunity/Lib/FFmpeg/capture.py,sha256=YptVE5Ff6-hJXmsARxtXclWXmVl16y6QLR-VMybBaEg,5601
|
|
65
|
-
StreamingCommunity/Lib/FFmpeg/command.py,sha256=EfI3Q4tQkV7XmKWx0eBDnuIhn0O_lfPiAiI5IET3nLk,10289
|
|
66
|
-
StreamingCommunity/Lib/FFmpeg/util.py,sha256=QTtBaFdrUa5CFSPq1ycr3_zw81A7zVRmQN7FoxUwuR8,8341
|
|
67
|
-
StreamingCommunity/Lib/M3U8/__init__.py,sha256=sD2VIslF43OrudA1r-9xkSfUvSblr1LOZpaIM89F6M4,175
|
|
68
|
-
StreamingCommunity/Lib/M3U8/decryptor.py,sha256=q6GVlM9UtiR_Yop7-MDUTShAESc66LX2k2Eqvj3vge8,6473
|
|
69
|
-
StreamingCommunity/Lib/M3U8/estimator.py,sha256=_kBF6fbqtOJOSYZB5AIS969CpcUCyf2Q1kGHMNcR8rs,9608
|
|
70
|
-
StreamingCommunity/Lib/M3U8/parser.py,sha256=xmyCU4AYGIOUheTZ4OBPmQl_R4dJ3Y72i9UUa6_aErA,23553
|
|
71
|
-
StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=6NVKhc8R5CqarDM5TLWy6QU05qXPouW31gyilQszwbI,1675
|
|
72
|
-
StreamingCommunity/Lib/TMBD/__init__.py,sha256=b3yUqfeBFpnKH-MScrZ3r90cpXc2ufCC-El3whK1zk8,55
|
|
73
|
-
StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=HEL3jAqUYtVgX7GCaw60EAD3JGvEJLOQXfD6lRYEjxA,1968
|
|
74
|
-
StreamingCommunity/Lib/TMBD/tmdb.py,sha256=3UO_0uzi8xtrokX8Y_vO8vx_V8XHSkOVCqtgT-289GM,12000
|
|
75
|
-
StreamingCommunity/Upload/update.py,sha256=ly2E4gf5RCkhlHvDyVNP57jkGGH41V-UHLYwBwgypP4,2324
|
|
76
|
-
StreamingCommunity/Upload/version.py,sha256=tn8AMSDpJYz_BuZEm4FxsR7h0w0QwXoyZfdqEtJsp8c,175
|
|
77
|
-
StreamingCommunity/Util/_jsonConfig.py,sha256=CLvk6HWxUklZztoy55SzEOvdsbNo-pFcVQVanwixXCc,7001
|
|
78
|
-
StreamingCommunity/Util/call_stack.py,sha256=zuYbO8dV8bCa7fCdtaKQYuheA5K7BkTm3Oj8JA6GCpM,1417
|
|
79
|
-
StreamingCommunity/Util/color.py,sha256=1iQUf5xDp5XKKbXl9MvKEXJvv44Zf0P4J2Nu5ATIId8,479
|
|
80
|
-
StreamingCommunity/Util/console.py,sha256=bXP_iibXMpRIJ_zs03xFmSbkvMP3SguIuEUJZovoOqw,230
|
|
81
|
-
StreamingCommunity/Util/ffmpeg_installer.py,sha256=xDIT4TPQK6RauF869WBZjsuMfeCYX60TpIjLbqK-06M,14049
|
|
82
|
-
StreamingCommunity/Util/headers.py,sha256=r5hK8HVF-y6dQzCQpDnpbDGP02n29OYlzgaZAorcmG0,4565
|
|
83
|
-
StreamingCommunity/Util/logger.py,sha256=5XmFquGYt4FjvKNyYKa21mLLKARmzGWk-mBo05ezlHQ,1914
|
|
84
|
-
StreamingCommunity/Util/message.py,sha256=pgUf50z4kSJjKHBlBKn5bd26xlAAEvlLiMs9dvcvJ_s,3675
|
|
85
|
-
StreamingCommunity/Util/os.py,sha256=K8bgAxFq8pPFaMQPfeTSQ_E9aEERN7pwWB_XEXBC84Q,19429
|
|
86
|
-
StreamingCommunity/Util/table.py,sha256=lKCgvrtfODuQY5dFJqlNUYL2aFzfij-efS5oGv84E44,8508
|
|
87
|
-
StreamingCommunity-2.2.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
88
|
-
StreamingCommunity-2.2.0.dist-info/METADATA,sha256=bmv1tbmAcnYpqb03e6ctJy8LzA7wUZH3RhZfBrc1IVc,13539
|
|
89
|
-
StreamingCommunity-2.2.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
90
|
-
StreamingCommunity-2.2.0.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
|
|
91
|
-
StreamingCommunity-2.2.0.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
92
|
-
StreamingCommunity-2.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|