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

Files changed (34) 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/version.py +1 -1
  28. StreamingCommunity/run.py +12 -2
  29. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.6.dist-info}/METADATA +4 -6
  30. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.6.dist-info}/RECORD +34 -29
  31. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.6.dist-info}/WHEEL +1 -1
  32. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.6.dist-info}/entry_points.txt +0 -0
  33. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.6.dist-info/licenses}/LICENSE +0 -0
  34. {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.6.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]
@@ -1,5 +1,5 @@
1
1
  __title__ = 'StreamingCommunity'
2
- __version__ = '2.9.5'
2
+ __version__ = '2.9.6'
3
3
  __author__ = 'Arrowar'
4
4
  __description__ = 'A command-line program to download film'
5
5
  __copyright__ = 'Copyright 2024'
StreamingCommunity/run.py CHANGED
@@ -143,7 +143,7 @@ def initialize():
143
143
  sys.exit(0)
144
144
 
145
145
  # Trending tmbd
146
- if SHOW_TRENDING:
146
+ """if SHOW_TRENDING:
147
147
  print()
148
148
  tmdb.display_trending_films()
149
149
  tmdb.display_trending_tv_shows()
@@ -152,7 +152,7 @@ def initialize():
152
152
  try:
153
153
  git_update()
154
154
  except:
155
- console.log("[red]Error with loading github.")
155
+ console.log("[red]Error with loading github.")"""
156
156
 
157
157
  def restart_script():
158
158
  """Riavvia lo script con gli stessi argomenti della riga di comando."""
@@ -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.6
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,6 +28,7 @@ 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
@@ -199,13 +200,10 @@ from StreamingCommunity.Download import TOR_downloader
199
200
  client = TOR_downloader()
200
201
 
201
202
  # Add magnet link
202
- client.add_magnet_link("magnet:?xt=urn:btih:example_hash&dn=example_name")
203
+ client.add_magnet_link("magnet:?xt=urn:btih:example_hash&dn=example_name", save_path=".")
203
204
 
204
205
  # Start download
205
206
  client.start_download()
206
-
207
- # Move downloaded files to specific location
208
- client.move_downloaded_files("/downloads/torrents/")
209
207
  ```
210
208
 
211
209
  See [Torrent example](./Test/Download/TOR.py) for complete usage.
@@ -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=a9JpV4nT7qBqsolkPB85M_wGFoY2tEcwDwOIZ5LA7WY,13219
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
@@ -63,7 +68,7 @@ StreamingCommunity/Lib/TMBD/tmdb.py,sha256=byg0EFnlmd9JeLvn1N9K3QkB1KEfeMuFa7OVf
63
68
  StreamingCommunity/TelegramHelp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
69
  StreamingCommunity/TelegramHelp/telegram_bot.py,sha256=Qe1__aoK4PpDuing8JtWgdHzLee8LuYYyfeLNA7yADU,26307
65
70
  StreamingCommunity/Upload/update.py,sha256=TXWAOfvZr1So_oME11YvX_L5zRy2tM-ijF-_g1jf87o,2548
66
- StreamingCommunity/Upload/version.py,sha256=tFcpeSHbzC-UvP64UbgBklbKokJ7cvOYQuZGO_DghLA,171
71
+ StreamingCommunity/Upload/version.py,sha256=1EAKx1YZrCCqZkr1uhvD32WQIJlVs8V0I8pcBOutNMs,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.6.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
81
+ streamingcommunity-2.9.6.dist-info/METADATA,sha256=k91PwnAvkgzYIHAJZyfOJ7LnQo5NE6e4UYVBG8jpvvI,24303
82
+ streamingcommunity-2.9.6.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
83
+ streamingcommunity-2.9.6.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
84
+ streamingcommunity-2.9.6.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
85
+ streamingcommunity-2.9.6.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