StreamingCommunity 2.2.0__py3-none-any.whl → 2.3.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/altadefinizione/costant.py +6 -2
- StreamingCommunity/Api/Site/altadefinizione/film.py +2 -2
- StreamingCommunity/Api/Site/altadefinizione/site.py +28 -22
- StreamingCommunity/Api/Site/animeunity/costant.py +6 -2
- StreamingCommunity/Api/Site/animeunity/film_serie.py +3 -3
- StreamingCommunity/Api/Site/animeunity/site.py +27 -19
- 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/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 +2 -2
- StreamingCommunity/Api/Site/streamingcommunity/site.py +29 -28
- StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py +24 -24
- StreamingCommunity/Api/Template/Util/get_domain.py +100 -137
- StreamingCommunity/Lib/Downloader/HLS/downloader.py +3 -2
- StreamingCommunity/Lib/Downloader/HLS/segments.py +20 -15
- StreamingCommunity/Upload/version.py +1 -1
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.3.0.dist-info}/METADATA +34 -20
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.3.0.dist-info}/RECORD +38 -38
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.3.0.dist-info}/LICENSE +0 -0
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.3.0.dist-info}/WHEEL +0 -0
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.3.0.dist-info}/entry_points.txt +0 -0
- {StreamingCommunity-2.2.0.dist-info → StreamingCommunity-2.3.0.dist-info}/top_level.txt +0 -0
|
@@ -194,23 +194,28 @@ class M3U8_Segments:
|
|
|
194
194
|
"""
|
|
195
195
|
if self.is_index_url:
|
|
196
196
|
|
|
197
|
-
|
|
198
|
-
response = httpx.get(
|
|
199
|
-
self.url,
|
|
200
|
-
headers={'User-Agent': get_headers()},
|
|
201
|
-
timeout=max_timeout
|
|
202
|
-
)
|
|
203
|
-
response.raise_for_status()
|
|
197
|
+
try:
|
|
204
198
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
199
|
+
# Send a GET request to retrieve the index M3U8 file
|
|
200
|
+
response = httpx.get(
|
|
201
|
+
self.url,
|
|
202
|
+
headers={'User-Agent': get_headers()},
|
|
203
|
+
timeout=max_timeout,
|
|
204
|
+
follow_redirects=True
|
|
205
|
+
)
|
|
206
|
+
response.raise_for_status()
|
|
208
207
|
|
|
209
|
-
|
|
210
|
-
|
|
208
|
+
# Save the M3U8 file to the temporary folder
|
|
209
|
+
path_m3u8_file = os.path.join(self.tmp_folder, "playlist.m3u8")
|
|
210
|
+
open(path_m3u8_file, "w+").write(response.text)
|
|
211
211
|
|
|
212
|
-
|
|
212
|
+
# Parse the text from the M3U8 index file
|
|
213
|
+
self.parse_data(response.text)
|
|
213
214
|
|
|
215
|
+
except Exception as e:
|
|
216
|
+
print(f"Error during M3U8 index request: {e}")
|
|
217
|
+
|
|
218
|
+
else:
|
|
214
219
|
# Parser data of content of index pass in input to class
|
|
215
220
|
self.parse_data(self.url)
|
|
216
221
|
|
|
@@ -385,7 +390,7 @@ class M3U8_Segments:
|
|
|
385
390
|
buffer[index] = segment_content
|
|
386
391
|
|
|
387
392
|
except queue.Empty:
|
|
388
|
-
self.current_timeout = min(self.max_timeout, self.current_timeout * 1.
|
|
393
|
+
self.current_timeout = min(self.max_timeout, self.current_timeout * 1.25)
|
|
389
394
|
|
|
390
395
|
if self.stop_event.is_set():
|
|
391
396
|
break
|
|
@@ -546,7 +551,7 @@ class M3U8_Segments:
|
|
|
546
551
|
raise Exception("Output file is empty")
|
|
547
552
|
|
|
548
553
|
# Display additional
|
|
549
|
-
if self.info_nRetry >= len(self.segments) *
|
|
554
|
+
if self.info_nRetry >= len(self.segments) * 0.3:
|
|
550
555
|
|
|
551
556
|
# Get expected time
|
|
552
557
|
ex_hours, ex_minutes, ex_seconds = format_duration(self.expected_real_time_s)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: StreamingCommunity
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.0
|
|
4
4
|
Summary: UNKNOWN
|
|
5
5
|
Home-page: https://github.com/Lovi-0/StreamingCommunity
|
|
6
6
|
Author: Lovi-0
|
|
@@ -34,9 +34,6 @@ 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>
|
|
@@ -90,6 +87,22 @@ Requires-Dist: googlesearch-python
|
|
|
90
87
|
|
|
91
88
|
# Installation
|
|
92
89
|
|
|
90
|
+
<p align="center">
|
|
91
|
+
<a href="https://github.com/Lovi-0/StreamingCommunity/releases/latest/download/StreamingCommunity.exe">
|
|
92
|
+
<img src="https://img.shields.io/badge/-Windows_x64-blue.svg?style=for-the-badge&logo=windows" alt="Windows">
|
|
93
|
+
</a>
|
|
94
|
+
<a href="https://pypi.org/project/StreamingCommunity">
|
|
95
|
+
<img src="https://img.shields.io/badge/-PyPI-blue.svg?logo=pypi&labelColor=555555&style=for-the-badge" alt="PyPI">
|
|
96
|
+
</a>
|
|
97
|
+
<a href="https://github.com/Lovi-0/StreamingCommunity/releases/latest/download/StreamingCommunity.zip">
|
|
98
|
+
<img src="https://img.shields.io/badge/-Source_tar-green.svg?style=for-the-badge" alt="Source Tarball">
|
|
99
|
+
</a>
|
|
100
|
+
<a href="https://github.com/Lovi-0/StreamingCommunity/releases">
|
|
101
|
+
<img src="https://img.shields.io/badge/-All_Versions-lightgrey.svg?style=for-the-badge" alt="All Versions">
|
|
102
|
+
</a>
|
|
103
|
+
</p>
|
|
104
|
+
|
|
105
|
+
|
|
93
106
|
## 1. PyPI Installation
|
|
94
107
|
|
|
95
108
|
Install directly from PyPI:
|
|
@@ -229,6 +242,8 @@ The configuration file is divided into several main sections:
|
|
|
229
242
|
"movie_folder_name": "Movie",
|
|
230
243
|
"serie_folder_name": "TV",
|
|
231
244
|
"map_episode_name": "%(tv_name)_S%(season)E%(episode)_%(episode_name)",
|
|
245
|
+
"add_siteName": false,
|
|
246
|
+
"disable_searchDomain": false,
|
|
232
247
|
"not_close": false
|
|
233
248
|
}
|
|
234
249
|
```
|
|
@@ -256,7 +271,10 @@ The configuration file is divided into several main sections:
|
|
|
256
271
|
* `%(episode_name)` : Is the name of the episode
|
|
257
272
|
`<br/><br/>`
|
|
258
273
|
|
|
259
|
-
- `
|
|
274
|
+
- `add_siteName`: If set to true, appends the site_name to the root path before the movie and serie folders.
|
|
275
|
+
- `disable_searchDomain`: If set to true, disables the search for a new domain for all sites.
|
|
276
|
+
- `not_close`: If set to true, keeps the program running after the download is complete.
|
|
277
|
+
|
|
260
278
|
|
|
261
279
|
### qBittorrent Configuration
|
|
262
280
|
|
|
@@ -273,7 +291,6 @@ The configuration file is divided into several main sections:
|
|
|
273
291
|
|
|
274
292
|
To enable qBittorrent integration, follow the setup guide [here](https://github.com/lgallard/qBittorrent-Controller/wiki/How-to-enable-the-qBittorrent-Web-UI).
|
|
275
293
|
|
|
276
|
-
<br>
|
|
277
294
|
|
|
278
295
|
## REQUESTS Settings
|
|
279
296
|
|
|
@@ -287,7 +304,6 @@ The configuration file is divided into several main sections:
|
|
|
287
304
|
- `timeout`: Maximum timeout (in seconds) for each request
|
|
288
305
|
- `max_retry`: Number of retry attempts per segment during M3U8 index download
|
|
289
306
|
|
|
290
|
-
<br>
|
|
291
307
|
|
|
292
308
|
## M3U8_DOWNLOAD Settings
|
|
293
309
|
|
|
@@ -308,10 +324,9 @@ The configuration file is divided into several main sections:
|
|
|
308
324
|
- `cleanup_tmp_folder`: Remove temporary .ts files after download
|
|
309
325
|
|
|
310
326
|
> [!IMPORTANT]
|
|
311
|
-
> Set `tqdm_use_large_bar` to `false` when using Termux or terminals with limited width to prevent
|
|
327
|
+
> Set `tqdm_use_large_bar` to `false` when using Termux or terminals with limited width to prevent network monitoring issues
|
|
312
328
|
|
|
313
329
|
|
|
314
|
-
<br>
|
|
315
330
|
|
|
316
331
|
### Language Settings
|
|
317
332
|
|
|
@@ -360,7 +375,6 @@ forced-ita hin - Hindi pol - Polish tur - Turkish
|
|
|
360
375
|
- `force_resolution`: Force specific resolution (-1 for best available, or specify 1080, 720, 360)
|
|
361
376
|
- `get_only_link`: Return M3U8 playlist/index URL instead of downloading
|
|
362
377
|
|
|
363
|
-
<br>
|
|
364
378
|
|
|
365
379
|
# COMMAND
|
|
366
380
|
|
|
@@ -376,7 +390,6 @@ forced-ita hin - Hindi pol - Polish tur - Turkish
|
|
|
376
390
|
- Enter a season number followed by `-*` to download from that season to the end.
|
|
377
391
|
* **Example:** `3-*` will download from *Season 3* to the final season.
|
|
378
392
|
|
|
379
|
-
<br>
|
|
380
393
|
|
|
381
394
|
# Docker
|
|
382
395
|
|
|
@@ -415,15 +428,16 @@ The `run-container` command mounts also the `config.json` file, so any change to
|
|
|
415
428
|
|
|
416
429
|
| Website | Status |
|
|
417
430
|
|:-------------------|:------:|
|
|
418
|
-
| 1337xx
|
|
419
|
-
| Altadefinizione
|
|
420
|
-
| AnimeUnity
|
|
421
|
-
| Ilcorsaronero
|
|
422
|
-
| CB01New
|
|
423
|
-
| DDLStreamItaly
|
|
424
|
-
| GuardaSerie
|
|
425
|
-
| MostraGuarda
|
|
426
|
-
| StreamingCommunity | ✅ |
|
|
431
|
+
| [1337xx](https://1337xx.to/) | ✅ |
|
|
432
|
+
| [Altadefinizione](https://altadefinizione.prof/) | ✅ |
|
|
433
|
+
| [AnimeUnity](https://animeunity.so/) | ✅ |
|
|
434
|
+
| [Ilcorsaronero](https://ilcorsaronero.link/) | ✅ |
|
|
435
|
+
| [CB01New](https://cb01new.pics/) | ✅ |
|
|
436
|
+
| [DDLStreamItaly](https://ddlstreamitaly.co/) | ✅ |
|
|
437
|
+
| [GuardaSerie](https://guardaserie.academy/) | ✅ |
|
|
438
|
+
| [MostraGuarda](https://mostraguarda.stream/) | ✅ |
|
|
439
|
+
| [StreamingCommunity](https://streamingcommunity.prof/) | ✅ |
|
|
440
|
+
|
|
427
441
|
|
|
428
442
|
# Tutorials
|
|
429
443
|
|
|
@@ -5,59 +5,59 @@ StreamingCommunity/Api/Player/maxstream.py,sha256=0NwzyTFrIWC21xZytmg4Pl_ShAPfqI
|
|
|
5
5
|
StreamingCommunity/Api/Player/supervideo.py,sha256=gNoAo_LVZWycfIzmK28erWRTXwNDV6FKJSLJ2Lrw_Ok,6118
|
|
6
6
|
StreamingCommunity/Api/Player/vixcloud.py,sha256=pTl60wxSQmyCWjhv1RfHST_hacnwT3N9WnYnUJwKank,9498
|
|
7
7
|
StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=HniFPpcF1qtMAT8z5bf4noHJO85x8wRke6KUxB5r-F0,4438
|
|
8
|
-
StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=
|
|
8
|
+
StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=TbDbL09oxrA_-oH-cuKPTmnT51rsP1McVHKO0jgxXC0,4863
|
|
9
9
|
StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=gZFNPJahddRTELSdO4_-yt50wl0cZRDuxdRqIhYzSiQ,1219
|
|
10
10
|
StreamingCommunity/Api/Site/1337xx/costant.py,sha256=3jDI0qlysmtfiZIAciNA-pBLSza5GBYKZlONyMpb-FI,451
|
|
11
|
-
StreamingCommunity/Api/Site/1337xx/site.py,sha256=
|
|
12
|
-
StreamingCommunity/Api/Site/1337xx/title.py,sha256=
|
|
11
|
+
StreamingCommunity/Api/Site/1337xx/site.py,sha256=8daaXKoOGjfw_XjrSuzmdKfX6Q4CdGO97ghlf6TW8Ls,2860
|
|
12
|
+
StreamingCommunity/Api/Site/1337xx/title.py,sha256=pQAn4Fe3HQYMvNOxG9YPpnBQQpca2GT0_akEaodFtUk,1958
|
|
13
13
|
StreamingCommunity/Api/Site/altadefinizione/__init__.py,sha256=sTUnun_Ew5YrxmpYZvwHV_qj-NIYTOpJOujwN0O7iU8,1210
|
|
14
|
-
StreamingCommunity/Api/Site/altadefinizione/costant.py,sha256=
|
|
15
|
-
StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=
|
|
16
|
-
StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=
|
|
14
|
+
StreamingCommunity/Api/Site/altadefinizione/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
|
|
15
|
+
StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=96oNkwUZBoQRN2mkwrlgRJ71wrEt4JBgyCe9lcKkNUs,2231
|
|
16
|
+
StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=OioyZY5dIOfNbBSr86iy-dRhplrFvWb7GFEdklDh8sw,2959
|
|
17
17
|
StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=rcG40DnZPn3vvniohYo5SgyGNTZY24XXfV5bDAEpTWE,1300
|
|
18
|
-
StreamingCommunity/Api/Site/animeunity/costant.py,sha256=
|
|
19
|
-
StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=
|
|
20
|
-
StreamingCommunity/Api/Site/animeunity/site.py,sha256
|
|
18
|
+
StreamingCommunity/Api/Site/animeunity/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
|
|
19
|
+
StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=uINN13iCPy5BAurSszRKogRQY2rDBUbzJWDdqFBmRHY,4129
|
|
20
|
+
StreamingCommunity/Api/Site/animeunity/site.py,sha256=-eI0uf0HWjZCnxeEcLNbvqVVNRBNNadfmh-zJScGONU,5546
|
|
21
21
|
StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=Gv0xvTJMHru3YExAqQ-ZFfwIxs_227mB3d0JpsI3oAY,2983
|
|
22
22
|
StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=ClPCBPR6dCdVIZvXknUNum86AOkxCycIKzNl4ZJGVPk,1230
|
|
23
|
-
StreamingCommunity/Api/Site/cb01new/costant.py,sha256=
|
|
24
|
-
StreamingCommunity/Api/Site/cb01new/film.py,sha256=
|
|
25
|
-
StreamingCommunity/Api/Site/cb01new/site.py,sha256=
|
|
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=eqsRw89gkude1d0yARV15194_BORPEPLG7meGCriG_E,2434
|
|
26
26
|
StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=3vjwaEXlnrDAProWxyWpkN2Zg528XnpNwUrOvyTHPTY,1374
|
|
27
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/costant.py,sha256=
|
|
28
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=
|
|
29
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=
|
|
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=iqkmDapP0o2069jxjV87KTWGgVRtwN60fFczw9c2nXk,3089
|
|
30
30
|
StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=f7uA3VTANmWnLvYhjxMjzKRxU6FTgH2H8MSntWgc8jw,2652
|
|
31
31
|
StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=1NUo7z1OqDQ-DmXj6Db303SeC-0OQ_ElKcxo73JbpOM,1221
|
|
32
|
-
StreamingCommunity/Api/Site/guardaserie/costant.py,sha256=
|
|
33
|
-
StreamingCommunity/Api/Site/guardaserie/series.py,sha256=
|
|
34
|
-
StreamingCommunity/Api/Site/guardaserie/site.py,sha256=
|
|
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=79IC74AEMkXPpFVxbYdnezZ-VEZgSMoIyuFEQYgLop4,2866
|
|
35
35
|
StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=Os4lKYQB8PT1b-jzozRIpdovGh4gUQuXrPEHyLriYio,3399
|
|
36
36
|
StreamingCommunity/Api/Site/ilcorsaronero/__init__.py,sha256=JBvYZqLlk5nckjYRApX5AZ58OfxF-yTTu6SE54F49Ms,1248
|
|
37
|
-
StreamingCommunity/Api/Site/ilcorsaronero/costant.py,sha256=
|
|
38
|
-
StreamingCommunity/Api/Site/ilcorsaronero/site.py,sha256=
|
|
39
|
-
StreamingCommunity/Api/Site/ilcorsaronero/title.py,sha256=
|
|
37
|
+
StreamingCommunity/Api/Site/ilcorsaronero/costant.py,sha256=2hSZ5m2CB23IV3HsSClx1yzHhjQsxcjV3gicuWfsQyE,777
|
|
38
|
+
StreamingCommunity/Api/Site/ilcorsaronero/site.py,sha256=JUacRMEhrdPYTs9mwdneAzonLroPgQTbrazgW6Vkux8,2227
|
|
39
|
+
StreamingCommunity/Api/Site/ilcorsaronero/title.py,sha256=BGmBS4zNldfxtNBhPAgDtId0QPcLnEyHjTBstt0lJqU,1354
|
|
40
40
|
StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py,sha256=PYV_OOU8KyO9ysVchfuFNfikCGmyE-NHknhGB64XOsw,5258
|
|
41
41
|
StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=0HRPWgz4pFpVR6_mUQy8SLGcUgQdseVrH-QqnfKlxW4,1177
|
|
42
|
-
StreamingCommunity/Api/Site/mostraguarda/costant.py,sha256=
|
|
43
|
-
StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=
|
|
42
|
+
StreamingCommunity/Api/Site/mostraguarda/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
|
|
43
|
+
StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=KzlA2auJVHSA-r4YTtMOzui1vBTKftwQnm4RJmbwkHs,3031
|
|
44
44
|
StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=TF8q_xHPXmwEkhDj3MS8xOVHgRQRmK-WNo0pQHChV74,1487
|
|
45
|
-
StreamingCommunity/Api/Site/streamingcommunity/costant.py,sha256=
|
|
46
|
-
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=
|
|
47
|
-
StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256
|
|
48
|
-
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=
|
|
49
|
-
StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=
|
|
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=CxYYPF_PPUJ-clkD5ZiHew-a_luIS2K465u1Ki6j6uM,7371
|
|
48
|
+
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=m6sKQUhGdkMOgHpW6OU6JKJDM6EW3fAP3oRZ23Zm4GE,3990
|
|
49
|
+
StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=SQYgKFKRfyzjtJdXWfUg94JMMWddPESqbEY1Ga1Uii8,4331
|
|
50
50
|
StreamingCommunity/Api/Template/__init__.py,sha256=lhVpudlILM1L9iBZ_7vfYwgKyrdR1OWeLvk364-fJpU,48
|
|
51
51
|
StreamingCommunity/Api/Template/site.py,sha256=Xk_XpZ97xDUhGeiwo-52b7h1kOVsRQVdCqoXcMs2zHk,2995
|
|
52
52
|
StreamingCommunity/Api/Template/Class/SearchType.py,sha256=lJ054oi7baFU8HoXzq_mO4foRz0wtF9GIGOOFS8VpmY,2632
|
|
53
53
|
StreamingCommunity/Api/Template/Util/__init__.py,sha256=e-206LT2iAnL9I21fR_1FRm8F3WsbBRrUmraPP2Xfzo,202
|
|
54
|
-
StreamingCommunity/Api/Template/Util/get_domain.py,sha256=
|
|
54
|
+
StreamingCommunity/Api/Template/Util/get_domain.py,sha256=enAmgeTljxWv6aGwmO6fjz7_1mNig8upWWTRSoiDAoA,5428
|
|
55
55
|
StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=TkeRH8120Bsu7gTOJb2GRdZI6LZmgYCD60tQVruwkvI,6697
|
|
56
56
|
StreamingCommunity/Api/Template/Util/recall_search.py,sha256=N-h00R2S8rQud3mNtUmaakK_8d9e5YxgHv4QwcJ4aZw,1184
|
|
57
57
|
StreamingCommunity/Lib/Downloader/__init__.py,sha256=vAn-rpmlSmojvz4Quv47A5HLq4yBR_7noy4r6hqk0OQ,144
|
|
58
|
-
StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=
|
|
58
|
+
StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=Qxb6qt69Zo6nIl92qduoe8Pi7cT3y-sPCi7t6jwAtq0,39960
|
|
59
59
|
StreamingCommunity/Lib/Downloader/HLS/proxyes.py,sha256=Mrs5Mr6ATv-6BUS7CLcZjw3JNH7g_XOz7boeB1oQAQ8,3385
|
|
60
|
-
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=
|
|
60
|
+
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=0iWTmJsD6aZUkzZGN6pONZABpIcpbK0WsLklo6ZhOME,22597
|
|
61
61
|
StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=gWhNHhL5f3bXAGUaOlH2wCwda0sKi-R9s6PxOIp7LrU,6028
|
|
62
62
|
StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=67RDi3Er5xpoHFIn11sGcCB1xgIEGE-Nhn9wqDfmGak,11617
|
|
63
63
|
StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=0KehwaTYL72PJaJJo2fzveGgc9F2-abIk7w6gXsfX1w,135
|
|
@@ -73,7 +73,7 @@ StreamingCommunity/Lib/TMBD/__init__.py,sha256=b3yUqfeBFpnKH-MScrZ3r90cpXc2ufCC-
|
|
|
73
73
|
StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=HEL3jAqUYtVgX7GCaw60EAD3JGvEJLOQXfD6lRYEjxA,1968
|
|
74
74
|
StreamingCommunity/Lib/TMBD/tmdb.py,sha256=3UO_0uzi8xtrokX8Y_vO8vx_V8XHSkOVCqtgT-289GM,12000
|
|
75
75
|
StreamingCommunity/Upload/update.py,sha256=ly2E4gf5RCkhlHvDyVNP57jkGGH41V-UHLYwBwgypP4,2324
|
|
76
|
-
StreamingCommunity/Upload/version.py,sha256=
|
|
76
|
+
StreamingCommunity/Upload/version.py,sha256=8Y-pR5TMA_uyNSidmwJThY5WAo6Xl8m8OUTX2mJeHu4,175
|
|
77
77
|
StreamingCommunity/Util/_jsonConfig.py,sha256=CLvk6HWxUklZztoy55SzEOvdsbNo-pFcVQVanwixXCc,7001
|
|
78
78
|
StreamingCommunity/Util/call_stack.py,sha256=zuYbO8dV8bCa7fCdtaKQYuheA5K7BkTm3Oj8JA6GCpM,1417
|
|
79
79
|
StreamingCommunity/Util/color.py,sha256=1iQUf5xDp5XKKbXl9MvKEXJvv44Zf0P4J2Nu5ATIId8,479
|
|
@@ -84,9 +84,9 @@ StreamingCommunity/Util/logger.py,sha256=5XmFquGYt4FjvKNyYKa21mLLKARmzGWk-mBo05e
|
|
|
84
84
|
StreamingCommunity/Util/message.py,sha256=pgUf50z4kSJjKHBlBKn5bd26xlAAEvlLiMs9dvcvJ_s,3675
|
|
85
85
|
StreamingCommunity/Util/os.py,sha256=K8bgAxFq8pPFaMQPfeTSQ_E9aEERN7pwWB_XEXBC84Q,19429
|
|
86
86
|
StreamingCommunity/Util/table.py,sha256=lKCgvrtfODuQY5dFJqlNUYL2aFzfij-efS5oGv84E44,8508
|
|
87
|
-
StreamingCommunity-2.
|
|
88
|
-
StreamingCommunity-2.
|
|
89
|
-
StreamingCommunity-2.
|
|
90
|
-
StreamingCommunity-2.
|
|
91
|
-
StreamingCommunity-2.
|
|
92
|
-
StreamingCommunity-2.
|
|
87
|
+
StreamingCommunity-2.3.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
88
|
+
StreamingCommunity-2.3.0.dist-info/METADATA,sha256=wYP_SSP7_5GhenIPUZqN2GSn7bs0E6ZHaE4OfD4GQpc,14719
|
|
89
|
+
StreamingCommunity-2.3.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
90
|
+
StreamingCommunity-2.3.0.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
|
|
91
|
+
StreamingCommunity-2.3.0.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
92
|
+
StreamingCommunity-2.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|