StreamingCommunity 2.9.5__py3-none-any.whl → 2.9.7__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.

Files changed (35) hide show
  1. StreamingCommunity/Api/Player/sweetpixel.py +49 -0
  2. StreamingCommunity/Api/Site/1337xx/site.py +3 -3
  3. StreamingCommunity/Api/Site/1337xx/title.py +4 -6
  4. StreamingCommunity/Api/Site/altadefinizione/film.py +1 -1
  5. StreamingCommunity/Api/Site/altadefinizione/series.py +1 -2
  6. StreamingCommunity/Api/Site/altadefinizione/site.py +3 -3
  7. StreamingCommunity/Api/Site/animeunity/film_serie.py +3 -4
  8. StreamingCommunity/Api/Site/animeunity/site.py +4 -4
  9. StreamingCommunity/Api/Site/animeworld/__init__.py +71 -0
  10. StreamingCommunity/Api/Site/animeworld/serie.py +107 -0
  11. StreamingCommunity/Api/Site/animeworld/site.py +111 -0
  12. StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py +79 -0
  13. StreamingCommunity/Api/Site/cb01new/film.py +1 -1
  14. StreamingCommunity/Api/Site/cb01new/site.py +3 -3
  15. StreamingCommunity/Api/Site/ddlstreamitaly/series.py +2 -2
  16. StreamingCommunity/Api/Site/ddlstreamitaly/site.py +3 -3
  17. StreamingCommunity/Api/Site/guardaserie/series.py +1 -1
  18. StreamingCommunity/Api/Site/guardaserie/site.py +3 -3
  19. StreamingCommunity/Api/Site/mostraguarda/film.py +1 -1
  20. StreamingCommunity/Api/Site/streamingcommunity/film.py +1 -1
  21. StreamingCommunity/Api/Site/streamingcommunity/series.py +1 -2
  22. StreamingCommunity/Api/Site/streamingcommunity/site.py +3 -3
  23. StreamingCommunity/Lib/Downloader/HLS/segments.py +1 -3
  24. StreamingCommunity/Lib/Downloader/TOR/downloader.py +397 -227
  25. StreamingCommunity/Lib/FFmpeg/util.py +12 -0
  26. StreamingCommunity/Lib/M3U8/estimator.py +5 -8
  27. StreamingCommunity/Upload/update.py +1 -1
  28. StreamingCommunity/Upload/version.py +1 -1
  29. StreamingCommunity/run.py +10 -0
  30. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/METADATA +20 -12
  31. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/RECORD +35 -30
  32. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/WHEEL +1 -1
  33. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/entry_points.txt +0 -0
  34. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info/licenses}/LICENSE +0 -0
  35. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/top_level.txt +0 -0
@@ -207,6 +207,18 @@ def check_duration_v_a(video_path, audio_path, tolerance=1.0):
207
207
  video_duration = get_video_duration(video_path)
208
208
  audio_duration = get_video_duration(audio_path)
209
209
 
210
+ # Check if either duration is None and specify which one is None
211
+ if video_duration is None and audio_duration is None:
212
+ console.print("[yellow]Warning: Both video and audio durations are None. Returning 0 as duration difference.[/yellow]")
213
+ return False, 0.0
214
+ elif video_duration is None:
215
+ console.print("[yellow]Warning: Video duration is None. Returning 0 as duration difference.[/yellow]")
216
+ return False, 0.0
217
+ elif audio_duration is None:
218
+ console.print("[yellow]Warning: Audio duration is None. Returning 0 as duration difference.[/yellow]")
219
+ return False, 0.0
220
+
221
+ # Calculate the duration difference
210
222
  duration_difference = abs(video_duration - audio_duration)
211
223
 
212
224
  # Check if the duration difference is within the tolerance
@@ -27,7 +27,6 @@ class M3U8_Ts_Estimator:
27
27
  - total_segments (int): Length of total segments to download.
28
28
  """
29
29
  self.ts_file_sizes = []
30
- self.now_downloaded_size = 0
31
30
  self.total_segments = total_segments
32
31
  self.segments_instance = segments_instance
33
32
  self.lock = threading.Lock()
@@ -42,15 +41,13 @@ class M3U8_Ts_Estimator:
42
41
  else:
43
42
  logging.debug("USE_LARGE_BAR is False, speed capture thread not started")
44
43
 
45
- def add_ts_file(self, size: int, size_download: int, duration: float):
44
+ def add_ts_file(self, size: int):
46
45
  """Add a file size to the list of file sizes."""
47
- if size <= 0 or size_download <= 0 or duration <= 0:
48
- logging.error(f"Invalid input values: size={size}, size_download={size_download}, duration={duration}")
46
+ if size <= 0:
47
+ logging.error(f"Invalid input values: size={size}")
49
48
  return
50
49
 
51
50
  self.ts_file_sizes.append(size)
52
- self.now_downloaded_size += size_download
53
- logging.debug(f"Current total downloaded size: {self.now_downloaded_size}")
54
51
 
55
52
  def capture_speed(self, interval: float = 1.5):
56
53
  """Capture the internet speed periodically."""
@@ -99,9 +96,9 @@ class M3U8_Ts_Estimator:
99
96
  logging.error("An unexpected error occurred: %s", e)
100
97
  return "Error"
101
98
 
102
- def update_progress_bar(self, total_downloaded: int, duration: float, progress_counter: tqdm) -> None:
99
+ def update_progress_bar(self, total_downloaded: int, progress_counter: tqdm) -> None:
103
100
  try:
104
- self.add_ts_file(total_downloaded * self.total_segments, total_downloaded, duration)
101
+ self.add_ts_file(total_downloaded * self.total_segments)
105
102
 
106
103
  file_total_size = self.calculate_total_size()
107
104
  number_file_total_size = file_total_size.split(' ')[0]
@@ -68,7 +68,7 @@ def update():
68
68
 
69
69
  # Check installed version
70
70
  if str(__version__).replace('v', '') != str(last_version).replace('v', '') :
71
- console.print(f"\n[red]New version available: [yellow]{last_version}")
71
+ console.print(f"\n[cyan]New version available: [yellow]{last_version}")
72
72
 
73
73
  console.print(f"\n[red]{__title__} has been downloaded [yellow]{total_download_count} [red]times, but only [yellow]{percentual_stars}% [red]of users have starred it.\n\
74
74
  [cyan]Help the repository grow today by leaving a [yellow]star [cyan]and [yellow]sharing [cyan]it with others online!")
@@ -1,5 +1,5 @@
1
1
  __title__ = 'StreamingCommunity'
2
- __version__ = '2.9.5'
2
+ __version__ = '2.9.7'
3
3
  __author__ = 'Arrowar'
4
4
  __description__ = 'A command-line program to download film'
5
5
  __copyright__ = 'Copyright 2024'
StreamingCommunity/run.py CHANGED
@@ -254,8 +254,18 @@ def main(script_id = 0):
254
254
  }
255
255
 
256
256
  # Add dynamic arguments based on loaded search modules
257
+ used_short_options = set()
258
+
257
259
  for alias, (_, use_for) in search_functions.items():
258
260
  short_option = alias[:3].upper()
261
+
262
+ original_short_option = short_option
263
+ count = 1
264
+ while short_option in used_short_options:
265
+ short_option = f"{original_short_option}{count}"
266
+ count += 1
267
+
268
+ used_short_options.add(short_option)
259
269
  long_option = alias
260
270
  parser.add_argument(f'-{short_option}', f'--{long_option}', action='store_true', help=f'Search for {alias.split("_")[0]} on streaming platforms.')
261
271
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: StreamingCommunity
3
- Version: 2.9.5
3
+ Version: 2.9.7
4
4
  Home-page: https://github.com/Lovi-0/StreamingCommunity
5
5
  Author: Lovi-0
6
6
  Project-URL: Bug Reports, https://github.com/Lovi-0/StreamingCommunity/issues
@@ -28,12 +28,13 @@ Dynamic: description
28
28
  Dynamic: description-content-type
29
29
  Dynamic: home-page
30
30
  Dynamic: keywords
31
+ Dynamic: license-file
31
32
  Dynamic: project-url
32
33
  Dynamic: requires-dist
33
34
  Dynamic: requires-python
34
35
 
35
36
  <p align="center">
36
- <img src="https://i.ibb.co/v6RnT0wY/s2.jpg" alt="Project Logo" width="700"/>
37
+ <img src="https://i.ibb.co/v6RnT0wY/s2.jpg" alt="Project Logo" width="600"/>
37
38
  </p>
38
39
 
39
40
  <p align="center">
@@ -66,6 +67,7 @@ Dynamic: requires-python
66
67
  # 📋 Table of Contents
67
68
 
68
69
  - 🔄 [Update Domains](#update-domains)
70
+ - 🌐 [Available Sites](https://arrowar.github.io/StreamingDirectory/)
69
71
  - 🛠️ [Installation](#installation)
70
72
  - 📦 [PyPI Installation](#1-pypi-installation)
71
73
  - 🔄 [Automatic Installation](#2-automatic-installation)
@@ -94,18 +96,23 @@ Dynamic: requires-python
94
96
  # Installation
95
97
 
96
98
  <p align="center">
97
- <a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_win.exe" style="margin: 0 20px;">
99
+ <a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_win.exe">
98
100
  <img src="https://img.shields.io/badge/-Windows-blue.svg?style=for-the-badge&logo=windows" alt="Windows">
99
101
  </a>
100
- <a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_mac" style="margin: 0 20px;">
102
+ <a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_mac">
101
103
  <img src="https://img.shields.io/badge/-macOS-black.svg?style=for-the-badge&logo=apple" alt="macOS">
102
104
  </a>
103
- <a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_linux" style="margin: 0 20px;">
105
+ <a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_linux">
104
106
  <img src="https://img.shields.io/badge/-Linux-orange.svg?style=for-the-badge&logo=linux" alt="Linux">
105
107
  </a>
108
+ <a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_linux_previous">
109
+ <img src="https://img.shields.io/badge/-Linux Previous-gray.svg?style=for-the-badge&logo=linux" alt="Linux Previous">
110
+ </a>
111
+ <a href="https://github.com/Arrowar/StreamingCommunity/releases">
112
+ <img src="https://img.shields.io/badge/-All Versions-lightgrey.svg?style=for-the-badge&logo=github" alt="All Versions">
113
+ </a>
106
114
  </p>
107
115
 
108
-
109
116
  ## 1. PyPI Installation
110
117
 
111
118
  Install directly from PyPI:
@@ -199,13 +206,10 @@ from StreamingCommunity.Download import TOR_downloader
199
206
  client = TOR_downloader()
200
207
 
201
208
  # Add magnet link
202
- client.add_magnet_link("magnet:?xt=urn:btih:example_hash&dn=example_name")
209
+ client.add_magnet_link("magnet:?xt=urn:btih:example_hash&dn=example_name", save_path=".")
203
210
 
204
211
  # Start download
205
212
  client.start_download()
206
-
207
- # Move downloaded files to specific location
208
- client.move_downloaded_files("/downloads/torrents/")
209
213
  ```
210
214
 
211
215
  See [Torrent example](./Test/Download/TOR.py) for complete usage.
@@ -386,7 +390,9 @@ The configuration file is divided into several main sections:
386
390
  "show_trending": true,
387
391
  "use_api": true,
388
392
  "not_close": false,
389
- "telegram_bot": false
393
+ "telegram_bot": false,
394
+ "download_site_data": false,
395
+ "validate_github_config": false
390
396
  }
391
397
  }
392
398
  ```
@@ -399,6 +405,8 @@ The configuration file is divided into several main sections:
399
405
  - `not_close`: If set to true, keeps the program running after download is complete
400
406
  * Can be changed from terminal with `--not_close true/false`
401
407
  - `telegram_bot`: Enables Telegram bot integration
408
+ - `download_site_data`: If set to false, disables automatic site data download
409
+ - `validate_github_config`: If set to false, disables validation and updating of configuration from GitHub
402
410
 
403
411
  ## OUT_FOLDER Settings
404
412
 
@@ -1,41 +1,46 @@
1
1
  StreamingCommunity/__init__.py,sha256=Cw-N0VCg7sef1WqdtvVwrhs1zc4LoUhs5C8k7vpM1lQ,207
2
2
  StreamingCommunity/global_search.py,sha256=1U74JtXLWDGC_r5KCsQt4kC-XRO76QIWk3QnUz-1AqY,12126
3
- StreamingCommunity/run.py,sha256=tR4DxDgbaiBRPfJ0766TpEZ-u1FqzJRdWJ7GfbLNYTU,12929
3
+ StreamingCommunity/run.py,sha256=OgHnX1bdAFDLEou7pclpDIKXRFhIiqkZaLlYgHuhf0E,13213
4
4
  StreamingCommunity/Api/Player/ddl.py,sha256=M_ePETCMBpIHr5K5Yb7EML5VXwqkR7vJHQcGIv4AEQw,2261
5
5
  StreamingCommunity/Api/Player/maxstream.py,sha256=WXg8xncFXFiaUmTVXxB3NyknQtbvd0sF1eRaoDO24bU,4822
6
6
  StreamingCommunity/Api/Player/supervideo.py,sha256=hr9QViI-XD0Dqhcx90oaH8_j0d6cxpVaf-EuCjMs6hI,5199
7
+ StreamingCommunity/Api/Player/sweetpixel.py,sha256=Def9T7xTNUpGMsvUpGZ7OE_EMrKDh-6YJz9HHaewhuA,1658
7
8
  StreamingCommunity/Api/Player/vixcloud.py,sha256=NOZhW59hyBnG5FfmppcnIudAztr7seWzQBzAN3KC_3M,6317
8
9
  StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=U-8QlD5kGzIk3-4t4D6QyYmiDe8UBrSuVi1YHRQb7AU,4295
9
10
  StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=QLUgbwQrpuPIVNzdBlAiEJXnd-eCj_JQFckZZEEL55w,5214
10
11
  StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=En0bGDLm9fTKuR9ApQw2V8HuFcQNRjsy8sAcgjadIfM,2041
11
- StreamingCommunity/Api/Site/1337xx/site.py,sha256=WZMcCm8uoJAb16QVNeGvyQBvRqf9pi2ioMcrdECZxfg,2247
12
- StreamingCommunity/Api/Site/1337xx/title.py,sha256=lGb-IbWEIfg9Eu3XIu6IfxTOjvXkFL_NO9UEZcxOAfE,1831
12
+ StreamingCommunity/Api/Site/1337xx/site.py,sha256=XHG2Ojhmj2eutyWJPIICZkJUSvpa4IEB7xsNs1Dqcfk,2222
13
+ StreamingCommunity/Api/Site/1337xx/title.py,sha256=8T3cVRb-Mt9QdOtKWVVFHz8iOHqspf7iw28E7bfTV78,1865
13
14
  StreamingCommunity/Api/Site/altadefinizione/__init__.py,sha256=dBRK4a3URd3i8IhYSXbKg6hb_lXaY8u1qJ9pDLkKKdk,3266
14
- StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=BOCQPA736xQPB8yn0VGke0LVLVjmNqm9AyC4FbdJFYA,4328
15
- StreamingCommunity/Api/Site/altadefinizione/series.py,sha256=slS79oaGeJFam2QkIRCSeaBkJBXAUhD2wp4OleZ2FJo,7507
16
- StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=955zCDOOlS92xy9SC7RfHQo-6qmhXUstfnpn7WRwC0o,2709
15
+ StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=8XNFCtuR3BUrAkuoukthU0s6v9tc9QsWNShouBoxZqA,4396
16
+ StreamingCommunity/Api/Site/altadefinizione/series.py,sha256=okrRq1rvQ9FKwOymsyDtpmFzIxEm49rwo2SI5Pr_Voc,7598
17
+ StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=BW-1XqcHcVqvNFdggJEjRPI2kwxw6HOP4QeqdybD_AU,2688
17
18
  StreamingCommunity/Api/Site/altadefinizione/util/ScrapeSerie.py,sha256=tdO3ebcmU-cPnJQX4L1PVPN7IHNzu4hS-hjPWo_evCk,2526
18
19
  StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=DH6ltjOAh2W5utxRYDQhhx05GcHp5-5xDhICL9DH2jk,3097
19
- StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=Bi214vFB7g6jHCjCLdBT8TIpoLZRf5odFApqr5li2Io,6053
20
- StreamingCommunity/Api/Site/animeunity/site.py,sha256=HagIr6UcJSsSo-AJSxzMn_W9ie8Bd8I8pktHmcSWdF0,4954
20
+ StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=a0Hn2tjcWW1_L82e9H9DlgIJzASYnVHPPWydO28POtk,6014
21
+ StreamingCommunity/Api/Site/animeunity/site.py,sha256=jxg93WUx5ouBDs4oz1saWqSoJO9Ou1I3qJev0aODMl4,4947
21
22
  StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=6Vbw5KVwUbgooGjUIRAuXr9cWSkHDkAFP7EiXF2T4OM,2709
23
+ StreamingCommunity/Api/Site/animeworld/__init__.py,sha256=pHQ_qscQYG-4oXe2PJ_98MY1VRAkmPfYqmTaqGC5Hsg,2160
24
+ StreamingCommunity/Api/Site/animeworld/serie.py,sha256=kXhMVozyzRFxDkGj2O0utT6YSdCTaWm5gNrXSyrwR5w,3305
25
+ StreamingCommunity/Api/Site/animeworld/site.py,sha256=zjVvKPgjqPEiPWN6YSYhZg7Y-Bj5TsYBvI9SP3G6mow,3495
26
+ StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py,sha256=-k_xo5BKv6m-NJBZSHCt-skGIyh_-YCp-hHDpuuujp4,2617
22
27
  StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=C-6-HDxG73xXV6FK6LnQhs5yjkJawke4nq5kBQCVjSM,2081
23
- StreamingCommunity/Api/Site/cb01new/film.py,sha256=trrEGcklB6FhqpJvGaEwHI0EThK__e9O6DuknKAFNHw,1628
24
- StreamingCommunity/Api/Site/cb01new/site.py,sha256=b_FJdSDBJma9s09IoVJo9wCNEjQckTKj2WI1lwzqcEU,2093
28
+ StreamingCommunity/Api/Site/cb01new/film.py,sha256=vjd1ftm4LhxxG0TTKEwlOXtx0AYgxBbV5ZlQH8aSxGU,1695
29
+ StreamingCommunity/Api/Site/cb01new/site.py,sha256=_JPKP2BMK5SL_QZPtt7mbDdef_t0J7QO7QDKVw6xm-4,2068
25
30
  StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=H_Z46fvmoWHfrafhlgTHouhkhDbokxCAaDRmk8d07P8,2183
26
- StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=z3te51do5C_O77rDTR1N01aQ76BIGe5pm5i_PWJepQ4,3369
27
- StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=ZbzGqu24jqKPARKPfyXt5wB6QPRiygXitbgVRb9B2zk,2476
31
+ StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=C9kZjnGu7G9SSxDE8VstuAlnhLku7LMF-R7OD_sbKHM,3499
32
+ StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=cq2-fVU7w7-caZYXQTADYuLD7cEXJ3czvZIyDEXR_4s,2451
28
33
  StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=HY8YEvzWp3sy1q07rFLXLZhGYvapA1amMZByYvs0iJM,2553
29
34
  StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=_VtuSxR-6mWET-TRPg1nHhe5QWHImdnZRB8chQtGrm0,2040
30
- StreamingCommunity/Api/Site/guardaserie/series.py,sha256=xXuMR9NiAtXkHrErsmXRY9IkE2FVGuhqjATYEfapb0Y,5670
31
- StreamingCommunity/Api/Site/guardaserie/site.py,sha256=5aFytbQxal7elrRFiYkM-PhVA_kMP-A60jNgycXbxNE,2131
35
+ StreamingCommunity/Api/Site/guardaserie/series.py,sha256=Tjjrha2U4mO7TQLQnd-RKBh1izf7aUuujYLaTZFPpAw,5771
36
+ StreamingCommunity/Api/Site/guardaserie/site.py,sha256=zfujdRe-kPsxnPBWFpcYYYsbt5m6z_Lqql2XOWnQmI0,2106
32
37
  StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=4sZRWm8r5X80q285hemRf7MAWeaN5yfOU6i1SjKU4Tg,3268
33
38
  StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=RHUGgn_2uSLMHgPrCXAUqDDK6qv7PqimFr5z1mAYtrM,1933
34
- StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=dA7Vo9bU7g8eY8Vaj06_n2MHlKBMHh4B_MIw2sO872A,2719
39
+ StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=HTn9GWX_oKKICBcm_Hy0FM-jvS3TMfIywxBVeo2QS74,2786
35
40
  StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=akhH6AVIFvDskJ_uDlcNpistwnctbDxA-YiuVgIXm0A,3267
36
- StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=LaZzEQms9t7r30_PjHPgIOUkVDyotX0qFDBMKMVNSWo,2530
37
- StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=KNvEw7w9HJV2ocqDQ7VmsiEkPc89HeRKC7_igFx_dn0,8415
38
- StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=SoUtZDFAe-jckSpB38GJN9OY9FAJhYZPtOUAgQgEPAE,2985
41
+ StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=2DesspMs1CKQ4pn9cdH7sCQT1LWsEXFoLg9z8s8f2Hs,2598
42
+ StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=qbUvLC5Jo6f-aEYGg6qJvj58OWHFoyunfqJsHGNkqG8,8506
43
+ StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=7y-eMoNgwgQligou4NIKoo0WYvz1NFghRFZfiUCtqDA,2964
39
44
  StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=4WU0YFPXcsBpEANMGpAsbtffu3HxCqLsiC0K6_4OlHM,4525
40
45
  StreamingCommunity/Api/Template/__init__.py,sha256=oyfd_4_g5p5q6mxb_rKwSsudZnTM3W3kg1tLwxg-v-Q,46
41
46
  StreamingCommunity/Api/Template/config_loader.py,sha256=2RT_0mqQmWzXM4rYaqss-yhXztYAcfNkTalFPjzv270,2056
@@ -45,16 +50,16 @@ StreamingCommunity/Api/Template/Util/__init__.py,sha256=ZWQQd6iymNFDol9HaKPhVBoR
45
50
  StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=FYe2DC9SXIXzlRYI7fW4ieBpfrxYzsUgt2C47tYRk7U,9252
46
51
  StreamingCommunity/Lib/Downloader/__init__.py,sha256=JhbBh5hOnSM7VmtkxJ7zZ_FtWEC1JdnKThsSBjLV5FY,140
47
52
  StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=s3ZXyKsuBN3wE4Y0Y9xXuDauBPbaI9Qhgoy83IeMnbs,21590
48
- StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=4KXC4wE7EF4gWKTgUHLB_D1gnSRXvPBVlQpr486NpRo,18469
53
+ StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=4mh3qk0OYCfhqoZ1ljrLYZtBrcqBbkqBXfRjYdLeE6M,18358
49
54
  StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=o-LdIdPvnHfKhmtexRlu4D7T81qj6igg-g8IiNSXSFs,7456
50
- StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=KVZxCl1VB1-OuTjUhVS5Ycog_P0vCGTfRzhZPv8O7Ps,11267
55
+ StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=8WC4_vXAjqkoWVtXAaA6EOzlA45qBwHr_DCMQO7mYNw,19608
51
56
  StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=6PBsZdE1jrD2EKOVyx3JEHnyDZzVeKlPkH5T0zyfOgU,130
52
57
  StreamingCommunity/Lib/FFmpeg/capture.py,sha256=73BEpTijksErZOu46iRxwl3idKzZ-sVXXRr4nocIGY0,5168
53
58
  StreamingCommunity/Lib/FFmpeg/command.py,sha256=ubpffE02nsZM7xch5gbwGlEiUzecpxcFOd63n2cqM1k,10708
54
- StreamingCommunity/Lib/FFmpeg/util.py,sha256=6QzTbk5BNxKYsTl-cJgOO2XGQTWUdMloWMyrGGBs6eU,7168
59
+ StreamingCommunity/Lib/FFmpeg/util.py,sha256=wlYcX1W8RehhHjkN9XXm0idNGu1ir15y_J1pQ26-wDQ,7830
55
60
  StreamingCommunity/Lib/M3U8/__init__.py,sha256=H_KS2eDd3kVXMziFJnD0FCPvPHEizaqfoA36ElTv_r8,170
56
61
  StreamingCommunity/Lib/M3U8/decryptor.py,sha256=kuxxsd3eN0VGRrMJWXzHo8gCpT0u3fSZs_lwxlE5Fqs,2948
57
- StreamingCommunity/Lib/M3U8/estimator.py,sha256=ueb2at6Ueow3TUsAyd43aIy0UzKG2-PEgnYysHRMkZ0,5680
62
+ StreamingCommunity/Lib/M3U8/estimator.py,sha256=BIA4E5faX9rTYMVgac766dDy1fqEBjdQ-VcUt-tIzXU,5336
58
63
  StreamingCommunity/Lib/M3U8/parser.py,sha256=xN16pQZSCN9mQl_s7OcuH07-mNgVMpAS_hERq6zp7XM,21558
59
64
  StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=zldE4yOuNBV6AAvL1KI6p7XdRI_R5YZRscbDgT1564M,1735
60
65
  StreamingCommunity/Lib/TMBD/__init__.py,sha256=XzE42tw3Ws59DD1PF8WmGtZ0D4D7Hk3Af8QthNE-22U,66
@@ -62,8 +67,8 @@ StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=dRSvJFS5yqmsBZcw2wqbStcBtXNjU_3n5
62
67
  StreamingCommunity/Lib/TMBD/tmdb.py,sha256=byg0EFnlmd9JeLvn1N9K3QkB1KEfeMuFa7OVfGqks1Y,10685
63
68
  StreamingCommunity/TelegramHelp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
69
  StreamingCommunity/TelegramHelp/telegram_bot.py,sha256=Qe1__aoK4PpDuing8JtWgdHzLee8LuYYyfeLNA7yADU,26307
65
- StreamingCommunity/Upload/update.py,sha256=TXWAOfvZr1So_oME11YvX_L5zRy2tM-ijF-_g1jf87o,2548
66
- StreamingCommunity/Upload/version.py,sha256=tFcpeSHbzC-UvP64UbgBklbKokJ7cvOYQuZGO_DghLA,171
70
+ StreamingCommunity/Upload/update.py,sha256=qViEz--kqt7Z9Zxc9z9RyvhLOl22cTfnu9VSAwqn4y0,2549
71
+ StreamingCommunity/Upload/version.py,sha256=LgWw3GKanaUE__hA3sUm7n2w8P7ROnP4GdXw9KpaH2c,171
67
72
  StreamingCommunity/Util/color.py,sha256=NvD0Eni-25oOOkY-szCEoc0lGvzQxyL7xhM0RE4EvUM,458
68
73
  StreamingCommunity/Util/config_json.py,sha256=ocf1wsC1o0Nq8UStHUwj_QryMi_2O0yPpLEAkaMZPGg,18978
69
74
  StreamingCommunity/Util/ffmpeg_installer.py,sha256=q5yb_ZXKe9PhcG7JbKLfo1AZa8DNukgHqymPbudDuAY,13585
@@ -72,9 +77,9 @@ StreamingCommunity/Util/logger.py,sha256=9kGD6GmWj2pM8ADpJc85o7jm8DD0c5Aguqnq-9k
72
77
  StreamingCommunity/Util/message.py,sha256=SJaIPLvWeQqsIODVUKw3TgYRmBChovmlbcF6OUxqMI8,1425
73
78
  StreamingCommunity/Util/os.py,sha256=MUGJKQbNMWeoUrnJ2Ug3hoyYlrPDqU9BY94UmiUbxfA,14858
74
79
  StreamingCommunity/Util/table.py,sha256=QDVCVewMQ2JIQV3yDxQEL7Ac_m7NyRmynFg11BDeSBQ,9621
75
- streamingcommunity-2.9.5.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
76
- streamingcommunity-2.9.5.dist-info/METADATA,sha256=I5Huc0USVCd3Z1y43tqMD_qn1wc4IQpIPiTQqbVWqMQ,24365
77
- streamingcommunity-2.9.5.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
78
- streamingcommunity-2.9.5.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
79
- streamingcommunity-2.9.5.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
80
- streamingcommunity-2.9.5.dist-info/RECORD,,
80
+ streamingcommunity-2.9.7.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
81
+ streamingcommunity-2.9.7.dist-info/METADATA,sha256=KJWhvPLrNBpfTP_as7jq6-L1ibdLRylY7q2FUb-wtaM,25012
82
+ streamingcommunity-2.9.7.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
83
+ streamingcommunity-2.9.7.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
84
+ streamingcommunity-2.9.7.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
85
+ streamingcommunity-2.9.7.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (77.0.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5