StreamingCommunity 3.3.8__py3-none-any.whl → 3.3.9__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 (26) hide show
  1. StreamingCommunity/Api/Player/supervideo.py +1 -1
  2. StreamingCommunity/Api/Site/crunchyroll/film.py +13 -3
  3. StreamingCommunity/Api/Site/crunchyroll/series.py +6 -6
  4. StreamingCommunity/Api/Site/crunchyroll/site.py +13 -8
  5. StreamingCommunity/Api/Site/crunchyroll/util/ScrapeSerie.py +16 -41
  6. StreamingCommunity/Api/Site/crunchyroll/util/get_license.py +107 -101
  7. StreamingCommunity/Api/Site/mediasetinfinity/util/get_license.py +1 -1
  8. StreamingCommunity/Api/Site/raiplay/series.py +1 -10
  9. StreamingCommunity/Api/Site/raiplay/site.py +5 -13
  10. StreamingCommunity/Api/Site/raiplay/util/ScrapeSerie.py +12 -12
  11. StreamingCommunity/Lib/Downloader/DASH/cdm_helpher.py +8 -3
  12. StreamingCommunity/Lib/Downloader/DASH/decrypt.py +1 -0
  13. StreamingCommunity/Lib/Downloader/DASH/downloader.py +9 -2
  14. StreamingCommunity/Lib/Downloader/DASH/parser.py +456 -98
  15. StreamingCommunity/Lib/Downloader/DASH/segments.py +109 -64
  16. StreamingCommunity/Lib/Downloader/HLS/segments.py +261 -355
  17. StreamingCommunity/Lib/Downloader/MP4/downloader.py +1 -1
  18. StreamingCommunity/Lib/FFmpeg/command.py +3 -3
  19. StreamingCommunity/Lib/M3U8/estimator.py +0 -1
  20. StreamingCommunity/Upload/version.py +1 -1
  21. {streamingcommunity-3.3.8.dist-info → streamingcommunity-3.3.9.dist-info}/METADATA +1 -1
  22. {streamingcommunity-3.3.8.dist-info → streamingcommunity-3.3.9.dist-info}/RECORD +26 -26
  23. {streamingcommunity-3.3.8.dist-info → streamingcommunity-3.3.9.dist-info}/WHEEL +0 -0
  24. {streamingcommunity-3.3.8.dist-info → streamingcommunity-3.3.9.dist-info}/entry_points.txt +0 -0
  25. {streamingcommunity-3.3.8.dist-info → streamingcommunity-3.3.9.dist-info}/licenses/LICENSE +0 -0
  26. {streamingcommunity-3.3.8.dist-info → streamingcommunity-3.3.9.dist-info}/top_level.txt +0 -0
@@ -137,7 +137,7 @@ def MP4_downloader(url: str, path: str, referer: str = None, headers_: dict = No
137
137
  progress_bar = tqdm(
138
138
  total=total,
139
139
  ascii='░▒█',
140
- bar_format=f"{Colors.YELLOW}[MP4]{Colors.CYAN} Downloading{Colors.WHITE}: "
140
+ bar_format=f"{Colors.YELLOW}MP4{Colors.CYAN} Downloading{Colors.WHITE}: "
141
141
  f"{Colors.RED}{{percentage:.1f}}% {Colors.MAGENTA}{{bar:40}} {Colors.WHITE}"
142
142
  f"{Colors.DARK_GRAY}[{Colors.YELLOW}{{elapsed}}{Colors.WHITE} < {Colors.CYAN}{{remaining}}{Colors.DARK_GRAY}] "
143
143
  f"{Colors.LIGHT_CYAN}{{rate_fmt}}",
@@ -154,7 +154,7 @@ def join_video(video_path: str, out_path: str, codec: M3U8_Codec = None):
154
154
  if DEBUG_MODE:
155
155
  subprocess.run(ffmpeg_cmd, check=True)
156
156
  else:
157
- capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow][FFMPEG] [cyan]Join video")
157
+ capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]FFMPEG [cyan]Join video")
158
158
  print()
159
159
 
160
160
  return out_path
@@ -264,7 +264,7 @@ def join_audios(video_path: str, audio_tracks: List[Dict[str, str]], out_path: s
264
264
  subprocess.run(ffmpeg_cmd, check=True)
265
265
 
266
266
  else:
267
- capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow][FFMPEG] [cyan]Join audio")
267
+ capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]FFMPEG [cyan]Join audio")
268
268
  print()
269
269
 
270
270
  return out_path, use_shortest
@@ -309,7 +309,7 @@ def join_subtitle(video_path: str, subtitles_list: List[Dict[str, str]], out_pat
309
309
  subprocess.run(ffmpeg_cmd, check=True)
310
310
 
311
311
  else:
312
- capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow][FFMPEG] [cyan]Join subtitle")
312
+ capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]FFMPEG [cyan]Join subtitle")
313
313
  print()
314
314
 
315
315
  return out_path
@@ -42,7 +42,6 @@ class M3U8_Ts_Estimator:
42
42
  def add_ts_file(self, size: int):
43
43
  """Add a file size to the list of file sizes."""
44
44
  if size <= 0:
45
- logging.error(f"Invalid input values: size={size}")
46
45
  return
47
46
 
48
47
  with self.lock:
@@ -1,5 +1,5 @@
1
1
  __title__ = 'StreamingCommunity'
2
- __version__ = '3.3.8'
2
+ __version__ = '3.3.9'
3
3
  __author__ = 'Arrowar'
4
4
  __description__ = 'A command-line program to download film'
5
5
  __copyright__ = 'Copyright 2025'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: StreamingCommunity
3
- Version: 3.3.8
3
+ Version: 3.3.9
4
4
  Home-page: https://github.com/Arrowar/StreamingCommunity
5
5
  Author: Arrowar
6
6
  Project-URL: Bug Reports, https://github.com/Arrowar/StreamingCommunity/issues
@@ -3,7 +3,7 @@ StreamingCommunity/global_search.py,sha256=ip3D0OKNRTXHpe_Wy7v2KM-yNZdnnbG5FOBYS
3
3
  StreamingCommunity/run.py,sha256=p7RYZlHhIHzPs8n_6z7f0yikH5TEd8KeC9UIpiRJ5-c,19494
4
4
  StreamingCommunity/Api/Player/hdplayer.py,sha256=uQGU8ZVEk7qwwu1v4fjxScsP2x9NIHc7rRguXB1Fk2c,1942
5
5
  StreamingCommunity/Api/Player/mediapolisvod.py,sha256=Npm3HHUO5Wav8c2QX9E2c3SSW6d1STJw-kK8kHRF-zo,2403
6
- StreamingCommunity/Api/Player/supervideo.py,sha256=AuAA6eXYODJN-ytdvKjqlzZLOHpwx3kwgy1CSiogs-o,5388
6
+ StreamingCommunity/Api/Player/supervideo.py,sha256=3BiKCn6G0HIg8vPzYbFOag21IKa1aNNLPoFojQTSRNk,5388
7
7
  StreamingCommunity/Api/Player/sweetpixel.py,sha256=AAdLSD7ASLuZNiBx6btr8S44WkxtjTiToPhjtgA6HAE,1703
8
8
  StreamingCommunity/Api/Player/vixcloud.py,sha256=0DnukAIBqGqTmL9I6JkpAkHLMf1UG1D_J8c7zt6KDmU,6609
9
9
  StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=U-8QlD5kGzIk3-4t4D6QyYmiDe8UBrSuVi1YHRQb7AU,4295
@@ -24,11 +24,11 @@ StreamingCommunity/Api/Site/animeworld/serie.py,sha256=wmma2mlJd76SQpKRxPGlxWE8d
24
24
  StreamingCommunity/Api/Site/animeworld/site.py,sha256=Zdp6ayA1L6hS1t0q4fclHs7J1eiD16Ta9isTc13Zye8,3746
25
25
  StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py,sha256=S6sLtQt4Wvp4IVDho1uAXL8_-bbdj-RTRA1D7x9V8n8,3591
26
26
  StreamingCommunity/Api/Site/crunchyroll/__init__.py,sha256=P3OfAaROt_vSKPA-abfKkYn1LIfwUhfyC_0TnsBfqxU,5344
27
- StreamingCommunity/Api/Site/crunchyroll/film.py,sha256=Yknhduczy56eGu7QJ4exSgjnIJDeopho_zszULzxiWQ,2666
28
- StreamingCommunity/Api/Site/crunchyroll/series.py,sha256=1NGJTso62jl12KDI6Q1ZErHM90GMHQT8JzUrhniNuHo,7488
29
- StreamingCommunity/Api/Site/crunchyroll/site.py,sha256=Y0YF0fqF2ZY0w_O_eMa-dNADFbshVT5AUcSqtqCktI8,3687
30
- StreamingCommunity/Api/Site/crunchyroll/util/ScrapeSerie.py,sha256=ZY6z4pT5q7igiNZnJAvE9x0WiORTvFSH-U_CpqOzusA,7855
31
- StreamingCommunity/Api/Site/crunchyroll/util/get_license.py,sha256=60qwmDuecjgqoxqpRF4JfLtu0As2Q4s8HUcOIMMiBkc,4063
27
+ StreamingCommunity/Api/Site/crunchyroll/film.py,sha256=_w9AwU-P8T79IpzTnt9yDMlxRFKOK7KsHjInpQhNqRI,2937
28
+ StreamingCommunity/Api/Site/crunchyroll/series.py,sha256=JlwKOrSEO5tlpVAB_4hjgFACyYdc5jYx0eWt2kSZfH0,7380
29
+ StreamingCommunity/Api/Site/crunchyroll/site.py,sha256=HxVsxWYcVslP1cUGkWrvcyWy81c5Jsyi1IaRbkE_V-I,3568
30
+ StreamingCommunity/Api/Site/crunchyroll/util/ScrapeSerie.py,sha256=SKPRdUHaemUKTXUDbX45xSU2imTXfikgDfTigeI-WyQ,6973
31
+ StreamingCommunity/Api/Site/crunchyroll/util/get_license.py,sha256=fQ9VTn0wMkGmb7daj8bEtPVoA_z8bMWKPd6f1gWV_yA,4491
32
32
  StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=wqW3AkQJPLszZtcNCjqZjnDXVRrr8cUaJuHUh1WjJV0,5125
33
33
  StreamingCommunity/Api/Site/guardaserie/series.py,sha256=-ExCTCMeC6GcIJS9m2qkl46eXozOtDhT9hI8WJFvF-Q,6696
34
34
  StreamingCommunity/Api/Site/guardaserie/site.py,sha256=r-27X8V6c6RusWJy3geMri4Ox-BfMdBne0hFwKS5wlI,2174
@@ -39,12 +39,12 @@ StreamingCommunity/Api/Site/mediasetinfinity/series.py,sha256=ZBu897UFI90nA97bOZ
39
39
  StreamingCommunity/Api/Site/mediasetinfinity/site.py,sha256=W0eAZAxtPP1KK7DApvc34N0TwZdr_kZow5SZwRJLDFo,3352
40
40
  StreamingCommunity/Api/Site/mediasetinfinity/util/ScrapeSerie.py,sha256=9ATUZbRfZVW1yYN-BQKaISbtMQCuEqk0gtJQlQr0GIk,10334
41
41
  StreamingCommunity/Api/Site/mediasetinfinity/util/fix_mpd.py,sha256=B7uZfQ8X4p8KsiPVangFSs5rKKKpA3tavjPCdNrqyCc,1712
42
- StreamingCommunity/Api/Site/mediasetinfinity/util/get_license.py,sha256=MzCjQxzhuKINMQwSzeAgZeQwhdOviylDZOPDcjQwIKI,9408
42
+ StreamingCommunity/Api/Site/mediasetinfinity/util/get_license.py,sha256=UN0CqJp8v9R4tRXhDnJq25aD4TT6AKKRi59z8pE0VDs,9375
43
43
  StreamingCommunity/Api/Site/raiplay/__init__.py,sha256=RetTL3hWU9EpQJpOvV92xr57wI_dQwm40KRgJAQ_vfA,5269
44
44
  StreamingCommunity/Api/Site/raiplay/film.py,sha256=bN7BTrQOFweI-4icnVF8b4gE-A_fYEWlpeDM7xmRR8k,2675
45
- StreamingCommunity/Api/Site/raiplay/series.py,sha256=YEw53lYAR7BGyQbpPhjMVavBg97HRLym7JKLA0Nzz9s,7646
46
- StreamingCommunity/Api/Site/raiplay/site.py,sha256=s0ea7GmY4nrCm-j-Vvuc2Gpsv-521ifCfjM6jQuDqP4,3367
47
- StreamingCommunity/Api/Site/raiplay/util/ScrapeSerie.py,sha256=JE4E4JiNcAJSA7g8hiPdi7BB_HaLlhFv38y05lQPUCU,6463
45
+ StreamingCommunity/Api/Site/raiplay/series.py,sha256=wt1ISi3MTymCQWFFhsPXrgfH3Rzywf_mmyAxaiTCxm8,7401
46
+ StreamingCommunity/Api/Site/raiplay/site.py,sha256=ixHfNw1aRfLiioi6miZ-OuI-H_2FgL2wYoFtY429pzE,3048
47
+ StreamingCommunity/Api/Site/raiplay/util/ScrapeSerie.py,sha256=dvrIpGDzi0F8hlQF7CzvzZ-RMaiCuvlu02EyfYGEvFQ,6307
48
48
  StreamingCommunity/Api/Site/raiplay/util/get_license.py,sha256=96Q5aSWhtxtmQl2yzylL-1x3jY24UpLLZlEE6YrO_gs,978
49
49
  StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=EHe8TY4Fcn064PlJ4ubDwr6N0muilfUMpK5-yyOwp-A,5425
50
50
  StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=b03gI_JTEDPQirlQexG7cPSU8WIgw3HKjlJ25m9Abko,2781
@@ -64,22 +64,22 @@ StreamingCommunity/Api/Template/Class/SearchType.py,sha256=xp4vYKYHoXQF28fvWm0mk
64
64
  StreamingCommunity/Api/Template/Util/__init__.py,sha256=v23VkosPNOQG5XbDkyCx5shEVJvRJffgkAF_Am5zMQc,377
65
65
  StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=EFu5_7N_Fd6fVF7Ix14uWfr_pYLybEtnVBJcS101g4M,8573
66
66
  StreamingCommunity/Lib/Downloader/__init__.py,sha256=Zh92xTvBIEIjNQN22iXItG7_VqiDGbOpO5gOZDBdGxc,288
67
- StreamingCommunity/Lib/Downloader/DASH/cdm_helpher.py,sha256=22kh7jvnhU-_mPM_EHgaDxurmAUuOLDc40DrZ2_3MN0,4037
68
- StreamingCommunity/Lib/Downloader/DASH/decrypt.py,sha256=q5ARjb-wsJ0oxeNc-h8jB-LQjQH-idjHAE0ZP4hwNdg,2442
69
- StreamingCommunity/Lib/Downloader/DASH/downloader.py,sha256=yjxgyj81OkgcUABxO-KNpnijvvLrIarhCfkDE-iKLqE,20361
70
- StreamingCommunity/Lib/Downloader/DASH/parser.py,sha256=QUyYhmu-zI2GieiNZaoOoDVPTclSKXsrdeToAtbC9yI,9858
71
- StreamingCommunity/Lib/Downloader/DASH/segments.py,sha256=OTUjhiIU6cqG0ouM5Y3DGEQXJS3i_s79RlOKHLi0fGw,16794
67
+ StreamingCommunity/Lib/Downloader/DASH/cdm_helpher.py,sha256=fXKrOJywtTU6oDeAQUWLLIbontlI1sMpFGDuQMmaEIQ,4361
68
+ StreamingCommunity/Lib/Downloader/DASH/decrypt.py,sha256=gVMC2LSa4PBtGHBaOKVKmfACIDheqypoZxG3weji0LE,2536
69
+ StreamingCommunity/Lib/Downloader/DASH/downloader.py,sha256=dpuTWoIFEmtvVdka0Lo17KR0NdMRJy-9_eSDXA2Y50g,20675
70
+ StreamingCommunity/Lib/Downloader/DASH/parser.py,sha256=OA0pAaynCZnXuGGPJl6FFP1n4i9JyEWtJoOiMOzgA78,22805
71
+ StreamingCommunity/Lib/Downloader/DASH/segments.py,sha256=ayPHGJOxzSrogL68W_ECa5CFT5kWZYtyCN7BSKqbl98,18911
72
72
  StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=HmjOk_jkwCAWYfIrzbnx6TRHweElUFLg1OT2zwoPGgQ,28452
73
- StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=D8WtzfecZ9qgZ8ePPwYBV448mDvQBbfX4G9WFeJJVrw,22715
74
- StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=KoxcaOkldRI9f7AAwJkWqN983vz9xLA5jwEeq6Xgmvo,7773
73
+ StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=bRk_TcHnx5Z58B0KwxIUGZQPNI7S_8vVyhIiYHEqU7s,19809
74
+ StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=I9Vkz4RMdtm0LmikH9Hw5cHcoV7BGSaiAkwfKmWz2Ls,7771
75
75
  StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=tYOCuKkKDcTIJ-2bGIeplovRkLTdp89i8lUvJs_N9jc,19133
76
76
  StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=NZmOXpnc5jvdvjNnHPxvj5bzp0GUuNMXd00Fcy4rQPI,258
77
77
  StreamingCommunity/Lib/FFmpeg/capture.py,sha256=3gPNgndHABXSBSJOxWhijwRIs_q-GTTmFO5XB0OdskI,5038
78
- StreamingCommunity/Lib/FFmpeg/command.py,sha256=Xzz_BtNGg5zH_8IhU7JsmgehzJlJHYs5DNDvb7MZaNs,10425
78
+ StreamingCommunity/Lib/FFmpeg/command.py,sha256=VuOCd5XPLgOuYldfkcsL8DTPnDofn-F6yM_DS_6sDSQ,10419
79
79
  StreamingCommunity/Lib/FFmpeg/util.py,sha256=ISSNKvK61R0pGc9w6juK6S3jBb9SvrdTlTu8ycxg8FY,8903
80
80
  StreamingCommunity/Lib/M3U8/__init__.py,sha256=Zxij4WFCxjwyfswUfBv0oys_o0vQpAL5PoK5TGG_StY,288
81
81
  StreamingCommunity/Lib/M3U8/decryptor.py,sha256=0VPMWbfwP9aEr4Y8OYi-e4o0ucMeCnV9HyuiOWxu_sE,2361
82
- StreamingCommunity/Lib/M3U8/estimator.py,sha256=q8zEjjtxrnDXHbSh6ZsUDSMH5-nwbrk2LXDmsCaPuos,6516
82
+ StreamingCommunity/Lib/M3U8/estimator.py,sha256=mzrjeTYhuFZMP764W4r2D4QFjjCAoq2uiwnf8o8zEVM,6452
83
83
  StreamingCommunity/Lib/M3U8/parser.py,sha256=ykffMt7wmvDij70Whxz-hin0ZcmfRIj3VufXFGbHyMc,22573
84
84
  StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=0Wd6MsBf8BBQ6mmHFElgCX3UbHAzRzSREmi03yb4gU4,1735
85
85
  StreamingCommunity/Lib/TMBD/__init__.py,sha256=TBKZ0zwAUvil2V2AirEPy_Q-M3Ksar2CJsUNt4tpXhk,109
@@ -89,7 +89,7 @@ StreamingCommunity/TelegramHelp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
89
89
  StreamingCommunity/TelegramHelp/config.json,sha256=v7FjA4smyLWZxChATewmvxDjJcclOCRZ_BIFPJd8Jvc,1374
90
90
  StreamingCommunity/TelegramHelp/telegram_bot.py,sha256=KiurpTrgiUNyMcLfceseaxV4xGegCUSJ8YttSeGXhJM,26429
91
91
  StreamingCommunity/Upload/update.py,sha256=grMrdVdAo2jnpobosgXtKU7_xAIxYrhrJY5ce67HS3g,3649
92
- StreamingCommunity/Upload/version.py,sha256=h2Q8pvb7bn7gw3fxo06hdomqYsU77CpA4TCB8TlBf3U,170
92
+ StreamingCommunity/Upload/version.py,sha256=T3gDdmG20ZY3dguenOjjCjNQFk6FGebivbLNZ6n_iAU,170
93
93
  StreamingCommunity/Util/color.py,sha256=NvD0Eni-25oOOkY-szCEoc0lGvzQxyL7xhM0RE4EvUM,458
94
94
  StreamingCommunity/Util/config_json.py,sha256=g52iOA-AUmXx1Q--1OeBidILbaICX4uR_rezWfjG4TU,22807
95
95
  StreamingCommunity/Util/headers.py,sha256=RP3A6Gr8UB8VU6uzw_yDOjEKkIFKpi7Gi6_w2ACxE30,292
@@ -103,9 +103,9 @@ StreamingCommunity/Util/installer/bento4_install.py,sha256=8ZddP9_6Fa30pVJyOMqne
103
103
  StreamingCommunity/Util/installer/binary_paths.py,sha256=-vo1sAavMBCg8u1Bx-CNhUIlWdQ7C2gcT2esVMSpKxs,2470
104
104
  StreamingCommunity/Util/installer/device_install.py,sha256=3_pQcz6-lpDth2f2kq4uiV-nPEMGTDB7Q4lThyRnwrI,4389
105
105
  StreamingCommunity/Util/installer/ffmpeg_install.py,sha256=OobkwdIhO9QbMGjoTvYCeYzdodU0K1LX6LaMLRl7nZY,13562
106
- streamingcommunity-3.3.8.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
107
- streamingcommunity-3.3.8.dist-info/METADATA,sha256=GDqhnZCUPZip1LHI2ZNaCFfwH_v_mBionWj1Ls9nvks,20252
108
- streamingcommunity-3.3.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
109
- streamingcommunity-3.3.8.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
110
- streamingcommunity-3.3.8.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
111
- streamingcommunity-3.3.8.dist-info/RECORD,,
106
+ streamingcommunity-3.3.9.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
107
+ streamingcommunity-3.3.9.dist-info/METADATA,sha256=DLNlsIXx_jH5CWleY6h4DStZyhE1zJhXmdcyouXy1Z0,20252
108
+ streamingcommunity-3.3.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
109
+ streamingcommunity-3.3.9.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
110
+ streamingcommunity-3.3.9.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
111
+ streamingcommunity-3.3.9.dist-info/RECORD,,