StreamingCommunity 2.5.0__py3-none-any.whl → 2.5.2__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 (263) hide show
  1. StreamingCommunity/Api/Player/Helper/Vixcloud/__pycache__/js_parser.cpython-313.pyc +0 -0
  2. StreamingCommunity/Api/Player/Helper/Vixcloud/__pycache__/js_parser.cpython-39.pyc +0 -0
  3. StreamingCommunity/Api/Player/Helper/Vixcloud/__pycache__/util.cpython-313.pyc +0 -0
  4. StreamingCommunity/Api/Player/Helper/Vixcloud/__pycache__/util.cpython-39.pyc +0 -0
  5. StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py +143 -0
  6. StreamingCommunity/Api/Player/Helper/Vixcloud/util.py +136 -0
  7. StreamingCommunity/Api/Player/__pycache__/ddl.cpython-313.pyc +0 -0
  8. StreamingCommunity/Api/Player/__pycache__/ddl.cpython-39.pyc +0 -0
  9. StreamingCommunity/Api/Player/__pycache__/maxstream.cpython-313.pyc +0 -0
  10. StreamingCommunity/Api/Player/__pycache__/maxstream.cpython-39.pyc +0 -0
  11. StreamingCommunity/Api/Player/__pycache__/supervideo.cpython-313.pyc +0 -0
  12. StreamingCommunity/Api/Player/__pycache__/supervideo.cpython-39.pyc +0 -0
  13. StreamingCommunity/Api/Player/__pycache__/vixcloud.cpython-313.pyc +0 -0
  14. StreamingCommunity/Api/Player/__pycache__/vixcloud.cpython-39.pyc +0 -0
  15. StreamingCommunity/Api/Player/ddl.py +89 -0
  16. StreamingCommunity/Api/Player/maxstream.py +151 -0
  17. StreamingCommunity/Api/Player/supervideo.py +194 -0
  18. StreamingCommunity/Api/Player/vixcloud.py +273 -0
  19. StreamingCommunity/Api/Site/1337xx/__init__.py +51 -0
  20. StreamingCommunity/Api/Site/1337xx/__pycache__/__init__.cpython-313.pyc +0 -0
  21. StreamingCommunity/Api/Site/1337xx/__pycache__/__init__.cpython-39.pyc +0 -0
  22. StreamingCommunity/Api/Site/1337xx/__pycache__/costant.cpython-313.pyc +0 -0
  23. StreamingCommunity/Api/Site/1337xx/__pycache__/costant.cpython-39.pyc +0 -0
  24. StreamingCommunity/Api/Site/1337xx/__pycache__/site.cpython-313.pyc +0 -0
  25. StreamingCommunity/Api/Site/1337xx/__pycache__/site.cpython-39.pyc +0 -0
  26. StreamingCommunity/Api/Site/1337xx/__pycache__/title.cpython-313.pyc +0 -0
  27. StreamingCommunity/Api/Site/1337xx/__pycache__/title.cpython-39.pyc +0 -0
  28. StreamingCommunity/Api/Site/1337xx/costant.py +15 -0
  29. StreamingCommunity/Api/Site/1337xx/site.py +89 -0
  30. StreamingCommunity/Api/Site/1337xx/title.py +64 -0
  31. StreamingCommunity/Api/Site/altadefinizionegratis/__init__.py +51 -0
  32. StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/__init__.cpython-313.pyc +0 -0
  33. StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/__init__.cpython-39.pyc +0 -0
  34. StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/costant.cpython-313.pyc +0 -0
  35. StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/costant.cpython-39.pyc +0 -0
  36. StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/film.cpython-313.pyc +0 -0
  37. StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/film.cpython-39.pyc +0 -0
  38. StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/site.cpython-313.pyc +0 -0
  39. StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/site.cpython-39.pyc +0 -0
  40. StreamingCommunity/Api/Site/altadefinizionegratis/costant.py +19 -0
  41. StreamingCommunity/Api/Site/altadefinizionegratis/film.py +72 -0
  42. StreamingCommunity/Api/Site/altadefinizionegratis/site.py +95 -0
  43. StreamingCommunity/Api/Site/animeunity/__init__.py +51 -0
  44. StreamingCommunity/Api/Site/animeunity/__pycache__/__init__.cpython-313.pyc +0 -0
  45. StreamingCommunity/Api/Site/animeunity/__pycache__/__init__.cpython-39.pyc +0 -0
  46. StreamingCommunity/Api/Site/animeunity/__pycache__/costant.cpython-313.pyc +0 -0
  47. StreamingCommunity/Api/Site/animeunity/__pycache__/costant.cpython-39.pyc +0 -0
  48. StreamingCommunity/Api/Site/animeunity/__pycache__/film_serie.cpython-313.pyc +0 -0
  49. StreamingCommunity/Api/Site/animeunity/__pycache__/film_serie.cpython-39.pyc +0 -0
  50. StreamingCommunity/Api/Site/animeunity/__pycache__/site.cpython-313.pyc +0 -0
  51. StreamingCommunity/Api/Site/animeunity/__pycache__/site.cpython-39.pyc +0 -0
  52. StreamingCommunity/Api/Site/animeunity/costant.py +19 -0
  53. StreamingCommunity/Api/Site/animeunity/film_serie.py +135 -0
  54. StreamingCommunity/Api/Site/animeunity/site.py +175 -0
  55. StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py +97 -0
  56. StreamingCommunity/Api/Site/animeunity/util/__pycache__/ScrapeSerie.cpython-313.pyc +0 -0
  57. StreamingCommunity/Api/Site/animeunity/util/__pycache__/ScrapeSerie.cpython-39.pyc +0 -0
  58. StreamingCommunity/Api/Site/cb01new/__init__.py +52 -0
  59. StreamingCommunity/Api/Site/cb01new/__pycache__/__init__.cpython-313.pyc +0 -0
  60. StreamingCommunity/Api/Site/cb01new/__pycache__/__init__.cpython-39.pyc +0 -0
  61. StreamingCommunity/Api/Site/cb01new/__pycache__/costant.cpython-313.pyc +0 -0
  62. StreamingCommunity/Api/Site/cb01new/__pycache__/costant.cpython-39.pyc +0 -0
  63. StreamingCommunity/Api/Site/cb01new/__pycache__/film.cpython-313.pyc +0 -0
  64. StreamingCommunity/Api/Site/cb01new/__pycache__/film.cpython-39.pyc +0 -0
  65. StreamingCommunity/Api/Site/cb01new/__pycache__/site.cpython-313.pyc +0 -0
  66. StreamingCommunity/Api/Site/cb01new/__pycache__/site.cpython-39.pyc +0 -0
  67. StreamingCommunity/Api/Site/cb01new/costant.py +19 -0
  68. StreamingCommunity/Api/Site/cb01new/film.py +71 -0
  69. StreamingCommunity/Api/Site/cb01new/site.py +83 -0
  70. StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py +56 -0
  71. StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/__init__.cpython-313.pyc +0 -0
  72. StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/__init__.cpython-39.pyc +0 -0
  73. StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/costant.cpython-313.pyc +0 -0
  74. StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/costant.cpython-39.pyc +0 -0
  75. StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/series.cpython-313.pyc +0 -0
  76. StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/series.cpython-39.pyc +0 -0
  77. StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/site.cpython-313.pyc +0 -0
  78. StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/site.cpython-39.pyc +0 -0
  79. StreamingCommunity/Api/Site/ddlstreamitaly/costant.py +20 -0
  80. StreamingCommunity/Api/Site/ddlstreamitaly/series.py +145 -0
  81. StreamingCommunity/Api/Site/ddlstreamitaly/site.py +99 -0
  82. StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py +85 -0
  83. StreamingCommunity/Api/Site/ddlstreamitaly/util/__pycache__/ScrapeSerie.cpython-313.pyc +0 -0
  84. StreamingCommunity/Api/Site/ddlstreamitaly/util/__pycache__/ScrapeSerie.cpython-39.pyc +0 -0
  85. StreamingCommunity/Api/Site/guardaserie/__init__.py +51 -0
  86. StreamingCommunity/Api/Site/guardaserie/__pycache__/__init__.cpython-313.pyc +0 -0
  87. StreamingCommunity/Api/Site/guardaserie/__pycache__/__init__.cpython-39.pyc +0 -0
  88. StreamingCommunity/Api/Site/guardaserie/__pycache__/costant.cpython-313.pyc +0 -0
  89. StreamingCommunity/Api/Site/guardaserie/__pycache__/costant.cpython-39.pyc +0 -0
  90. StreamingCommunity/Api/Site/guardaserie/__pycache__/series.cpython-313.pyc +0 -0
  91. StreamingCommunity/Api/Site/guardaserie/__pycache__/series.cpython-39.pyc +0 -0
  92. StreamingCommunity/Api/Site/guardaserie/__pycache__/site.cpython-313.pyc +0 -0
  93. StreamingCommunity/Api/Site/guardaserie/__pycache__/site.cpython-39.pyc +0 -0
  94. StreamingCommunity/Api/Site/guardaserie/costant.py +19 -0
  95. StreamingCommunity/Api/Site/guardaserie/series.py +198 -0
  96. StreamingCommunity/Api/Site/guardaserie/site.py +90 -0
  97. StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py +110 -0
  98. StreamingCommunity/Api/Site/guardaserie/util/__pycache__/ScrapeSerie.cpython-313.pyc +0 -0
  99. StreamingCommunity/Api/Site/guardaserie/util/__pycache__/ScrapeSerie.cpython-39.pyc +0 -0
  100. StreamingCommunity/Api/Site/ilcorsaronero/__init__.py +52 -0
  101. StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/__init__.cpython-313.pyc +0 -0
  102. StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/__init__.cpython-39.pyc +0 -0
  103. StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/costant.cpython-313.pyc +0 -0
  104. StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/costant.cpython-39.pyc +0 -0
  105. StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/site.cpython-313.pyc +0 -0
  106. StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/site.cpython-39.pyc +0 -0
  107. StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/title.cpython-313.pyc +0 -0
  108. StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/title.cpython-39.pyc +0 -0
  109. StreamingCommunity/Api/Site/ilcorsaronero/costant.py +19 -0
  110. StreamingCommunity/Api/Site/ilcorsaronero/site.py +72 -0
  111. StreamingCommunity/Api/Site/ilcorsaronero/title.py +44 -0
  112. StreamingCommunity/Api/Site/ilcorsaronero/util/__pycache__/ilCorsarScraper.cpython-313.pyc +0 -0
  113. StreamingCommunity/Api/Site/ilcorsaronero/util/__pycache__/ilCorsarScraper.cpython-39.pyc +0 -0
  114. StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py +149 -0
  115. StreamingCommunity/Api/Site/mostraguarda/__init__.py +49 -0
  116. StreamingCommunity/Api/Site/mostraguarda/__pycache__/__init__.cpython-313.pyc +0 -0
  117. StreamingCommunity/Api/Site/mostraguarda/__pycache__/__init__.cpython-39.pyc +0 -0
  118. StreamingCommunity/Api/Site/mostraguarda/__pycache__/costant.cpython-313.pyc +0 -0
  119. StreamingCommunity/Api/Site/mostraguarda/__pycache__/costant.cpython-39.pyc +0 -0
  120. StreamingCommunity/Api/Site/mostraguarda/__pycache__/film.cpython-313.pyc +0 -0
  121. StreamingCommunity/Api/Site/mostraguarda/__pycache__/film.cpython-39.pyc +0 -0
  122. StreamingCommunity/Api/Site/mostraguarda/costant.py +19 -0
  123. StreamingCommunity/Api/Site/mostraguarda/film.py +101 -0
  124. StreamingCommunity/Api/Site/streamingcommunity/__init__.py +56 -0
  125. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/__init__.cpython-313.pyc +0 -0
  126. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/__init__.cpython-39.pyc +0 -0
  127. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/costant.cpython-313.pyc +0 -0
  128. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/costant.cpython-39.pyc +0 -0
  129. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/film.cpython-313.pyc +0 -0
  130. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/film.cpython-39.pyc +0 -0
  131. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/series.cpython-313.pyc +0 -0
  132. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/series.cpython-39.pyc +0 -0
  133. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/site.cpython-313.pyc +0 -0
  134. StreamingCommunity/Api/Site/streamingcommunity/__pycache__/site.cpython-39.pyc +0 -0
  135. StreamingCommunity/Api/Site/streamingcommunity/costant.py +19 -0
  136. StreamingCommunity/Api/Site/streamingcommunity/film.py +75 -0
  137. StreamingCommunity/Api/Site/streamingcommunity/series.py +207 -0
  138. StreamingCommunity/Api/Site/streamingcommunity/site.py +143 -0
  139. StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py +124 -0
  140. StreamingCommunity/Api/Site/streamingcommunity/util/__pycache__/ScrapeSerie.cpython-313.pyc +0 -0
  141. StreamingCommunity/Api/Site/streamingcommunity/util/__pycache__/ScrapeSerie.cpython-39.pyc +0 -0
  142. StreamingCommunity/Api/Template/Class/SearchType.py +101 -0
  143. StreamingCommunity/Api/Template/Class/__pycache__/SearchType.cpython-313.pyc +0 -0
  144. StreamingCommunity/Api/Template/Class/__pycache__/SearchType.cpython-39.pyc +0 -0
  145. StreamingCommunity/Api/Template/Util/__init__.py +5 -0
  146. StreamingCommunity/Api/Template/Util/__pycache__/__init__.cpython-313.pyc +0 -0
  147. StreamingCommunity/Api/Template/Util/__pycache__/__init__.cpython-39.pyc +0 -0
  148. StreamingCommunity/Api/Template/Util/__pycache__/get_domain.cpython-313.pyc +0 -0
  149. StreamingCommunity/Api/Template/Util/__pycache__/get_domain.cpython-39.pyc +0 -0
  150. StreamingCommunity/Api/Template/Util/__pycache__/manage_ep.cpython-313.pyc +0 -0
  151. StreamingCommunity/Api/Template/Util/__pycache__/manage_ep.cpython-39.pyc +0 -0
  152. StreamingCommunity/Api/Template/Util/__pycache__/recall_search.cpython-313.pyc +0 -0
  153. StreamingCommunity/Api/Template/Util/__pycache__/recall_search.cpython-39.pyc +0 -0
  154. StreamingCommunity/Api/Template/Util/get_domain.py +202 -0
  155. StreamingCommunity/Api/Template/Util/manage_ep.py +179 -0
  156. StreamingCommunity/Api/Template/Util/recall_search.py +37 -0
  157. StreamingCommunity/Api/Template/__init__.py +3 -0
  158. StreamingCommunity/Api/Template/__pycache__/__init__.cpython-313.pyc +0 -0
  159. StreamingCommunity/Api/Template/__pycache__/__init__.cpython-39.pyc +0 -0
  160. StreamingCommunity/Api/Template/__pycache__/site.cpython-313.pyc +0 -0
  161. StreamingCommunity/Api/Template/__pycache__/site.cpython-39.pyc +0 -0
  162. StreamingCommunity/Api/Template/site.py +87 -0
  163. StreamingCommunity/Lib/Downloader/HLS/__pycache__/downloader.cpython-313.pyc +0 -0
  164. StreamingCommunity/Lib/Downloader/HLS/__pycache__/downloader.cpython-39.pyc +0 -0
  165. StreamingCommunity/Lib/Downloader/HLS/__pycache__/proxyes.cpython-313.pyc +0 -0
  166. StreamingCommunity/Lib/Downloader/HLS/__pycache__/proxyes.cpython-39.pyc +0 -0
  167. StreamingCommunity/Lib/Downloader/HLS/__pycache__/segments.cpython-313.pyc +0 -0
  168. StreamingCommunity/Lib/Downloader/HLS/__pycache__/segments.cpython-39.pyc +0 -0
  169. StreamingCommunity/Lib/Downloader/HLS/downloader.py +1008 -0
  170. StreamingCommunity/Lib/Downloader/HLS/proxyes.py +110 -0
  171. StreamingCommunity/Lib/Downloader/HLS/segments.py +573 -0
  172. StreamingCommunity/Lib/Downloader/MP4/__pycache__/downloader.cpython-313.pyc +0 -0
  173. StreamingCommunity/Lib/Downloader/MP4/__pycache__/downloader.cpython-39.pyc +0 -0
  174. StreamingCommunity/Lib/Downloader/MP4/downloader.py +155 -0
  175. StreamingCommunity/Lib/Downloader/TOR/__pycache__/downloader.cpython-313.pyc +0 -0
  176. StreamingCommunity/Lib/Downloader/TOR/__pycache__/downloader.cpython-39.pyc +0 -0
  177. StreamingCommunity/Lib/Downloader/TOR/downloader.py +296 -0
  178. StreamingCommunity/Lib/Downloader/__init__.py +5 -0
  179. StreamingCommunity/Lib/Downloader/__pycache__/__init__.cpython-313.pyc +0 -0
  180. StreamingCommunity/Lib/Downloader/__pycache__/__init__.cpython-39.pyc +0 -0
  181. StreamingCommunity/Lib/FFmpeg/__init__.py +4 -0
  182. StreamingCommunity/Lib/FFmpeg/__pycache__/__init__.cpython-313.pyc +0 -0
  183. StreamingCommunity/Lib/FFmpeg/__pycache__/__init__.cpython-39.pyc +0 -0
  184. StreamingCommunity/Lib/FFmpeg/__pycache__/capture.cpython-313.pyc +0 -0
  185. StreamingCommunity/Lib/FFmpeg/__pycache__/capture.cpython-39.pyc +0 -0
  186. StreamingCommunity/Lib/FFmpeg/__pycache__/command.cpython-313.pyc +0 -0
  187. StreamingCommunity/Lib/FFmpeg/__pycache__/command.cpython-39.pyc +0 -0
  188. StreamingCommunity/Lib/FFmpeg/__pycache__/util.cpython-313.pyc +0 -0
  189. StreamingCommunity/Lib/FFmpeg/__pycache__/util.cpython-39.pyc +0 -0
  190. StreamingCommunity/Lib/FFmpeg/capture.py +170 -0
  191. StreamingCommunity/Lib/FFmpeg/command.py +296 -0
  192. StreamingCommunity/Lib/FFmpeg/util.py +249 -0
  193. StreamingCommunity/Lib/M3U8/__init__.py +6 -0
  194. StreamingCommunity/Lib/M3U8/__pycache__/__init__.cpython-313.pyc +0 -0
  195. StreamingCommunity/Lib/M3U8/__pycache__/__init__.cpython-39.pyc +0 -0
  196. StreamingCommunity/Lib/M3U8/__pycache__/decryptor.cpython-313.pyc +0 -0
  197. StreamingCommunity/Lib/M3U8/__pycache__/decryptor.cpython-39.pyc +0 -0
  198. StreamingCommunity/Lib/M3U8/__pycache__/estimator.cpython-313.pyc +0 -0
  199. StreamingCommunity/Lib/M3U8/__pycache__/estimator.cpython-39.pyc +0 -0
  200. StreamingCommunity/Lib/M3U8/__pycache__/parser.cpython-313.pyc +0 -0
  201. StreamingCommunity/Lib/M3U8/__pycache__/parser.cpython-39.pyc +0 -0
  202. StreamingCommunity/Lib/M3U8/__pycache__/url_fixer.cpython-313.pyc +0 -0
  203. StreamingCommunity/Lib/M3U8/__pycache__/url_fixer.cpython-39.pyc +0 -0
  204. StreamingCommunity/Lib/M3U8/decryptor.py +165 -0
  205. StreamingCommunity/Lib/M3U8/estimator.py +229 -0
  206. StreamingCommunity/Lib/M3U8/parser.py +666 -0
  207. StreamingCommunity/Lib/M3U8/url_fixer.py +58 -0
  208. StreamingCommunity/Lib/TMBD/__init__.py +2 -0
  209. StreamingCommunity/Lib/TMBD/__pycache__/__init__.cpython-313.pyc +0 -0
  210. StreamingCommunity/Lib/TMBD/__pycache__/__init__.cpython-39.pyc +0 -0
  211. StreamingCommunity/Lib/TMBD/__pycache__/obj_tmbd.cpython-313.pyc +0 -0
  212. StreamingCommunity/Lib/TMBD/__pycache__/obj_tmbd.cpython-39.pyc +0 -0
  213. StreamingCommunity/Lib/TMBD/__pycache__/tmdb.cpython-313.pyc +0 -0
  214. StreamingCommunity/Lib/TMBD/__pycache__/tmdb.cpython-39.pyc +0 -0
  215. StreamingCommunity/Lib/TMBD/obj_tmbd.py +39 -0
  216. StreamingCommunity/Lib/TMBD/tmdb.py +346 -0
  217. StreamingCommunity/Upload/__pycache__/update.cpython-313.pyc +0 -0
  218. StreamingCommunity/Upload/__pycache__/update.cpython-39.pyc +0 -0
  219. StreamingCommunity/Upload/__pycache__/version.cpython-313.pyc +0 -0
  220. StreamingCommunity/Upload/__pycache__/version.cpython-39.pyc +0 -0
  221. StreamingCommunity/Upload/update.py +67 -0
  222. StreamingCommunity/Upload/version.py +5 -0
  223. StreamingCommunity/Util/__pycache__/_jsonConfig.cpython-313.pyc +0 -0
  224. StreamingCommunity/Util/__pycache__/_jsonConfig.cpython-39.pyc +0 -0
  225. StreamingCommunity/Util/__pycache__/call_stack.cpython-313.pyc +0 -0
  226. StreamingCommunity/Util/__pycache__/call_stack.cpython-39.pyc +0 -0
  227. StreamingCommunity/Util/__pycache__/color.cpython-313.pyc +0 -0
  228. StreamingCommunity/Util/__pycache__/color.cpython-39.pyc +0 -0
  229. StreamingCommunity/Util/__pycache__/console.cpython-313.pyc +0 -0
  230. StreamingCommunity/Util/__pycache__/console.cpython-39.pyc +0 -0
  231. StreamingCommunity/Util/__pycache__/ffmpeg_installer.cpython-313.pyc +0 -0
  232. StreamingCommunity/Util/__pycache__/ffmpeg_installer.cpython-39.pyc +0 -0
  233. StreamingCommunity/Util/__pycache__/headers.cpython-313.pyc +0 -0
  234. StreamingCommunity/Util/__pycache__/headers.cpython-39.pyc +0 -0
  235. StreamingCommunity/Util/__pycache__/logger.cpython-313.pyc +0 -0
  236. StreamingCommunity/Util/__pycache__/logger.cpython-39.pyc +0 -0
  237. StreamingCommunity/Util/__pycache__/message.cpython-313.pyc +0 -0
  238. StreamingCommunity/Util/__pycache__/message.cpython-39.pyc +0 -0
  239. StreamingCommunity/Util/__pycache__/os.cpython-313.pyc +0 -0
  240. StreamingCommunity/Util/__pycache__/os.cpython-39.pyc +0 -0
  241. StreamingCommunity/Util/__pycache__/table.cpython-313.pyc +0 -0
  242. StreamingCommunity/Util/__pycache__/table.cpython-39.pyc +0 -0
  243. StreamingCommunity/Util/_jsonConfig.py +228 -0
  244. StreamingCommunity/Util/call_stack.py +42 -0
  245. StreamingCommunity/Util/color.py +20 -0
  246. StreamingCommunity/Util/console.py +12 -0
  247. StreamingCommunity/Util/ffmpeg_installer.py +371 -0
  248. StreamingCommunity/Util/headers.py +160 -0
  249. StreamingCommunity/Util/logger.py +62 -0
  250. StreamingCommunity/Util/message.py +64 -0
  251. StreamingCommunity/Util/os.py +507 -0
  252. StreamingCommunity/Util/table.py +229 -0
  253. StreamingCommunity/__pycache__/__init__.cpython-313.pyc +0 -0
  254. StreamingCommunity/__pycache__/__init__.cpython-39.pyc +0 -0
  255. StreamingCommunity/__pycache__/run.cpython-313.pyc +0 -0
  256. StreamingCommunity/__pycache__/run.cpython-39.pyc +0 -0
  257. {StreamingCommunity-2.5.0.dist-info → StreamingCommunity-2.5.2.dist-info}/METADATA +1 -1
  258. StreamingCommunity-2.5.2.dist-info/RECORD +264 -0
  259. StreamingCommunity-2.5.0.dist-info/RECORD +0 -8
  260. {StreamingCommunity-2.5.0.dist-info → StreamingCommunity-2.5.2.dist-info}/LICENSE +0 -0
  261. {StreamingCommunity-2.5.0.dist-info → StreamingCommunity-2.5.2.dist-info}/WHEEL +0 -0
  262. {StreamingCommunity-2.5.0.dist-info → StreamingCommunity-2.5.2.dist-info}/entry_points.txt +0 -0
  263. {StreamingCommunity-2.5.0.dist-info → StreamingCommunity-2.5.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,229 @@
1
+ # 03.03.24
2
+
3
+ import os
4
+ import sys
5
+ import logging
6
+ import importlib
7
+
8
+
9
+ # External library
10
+ from rich.console import Console
11
+ from rich.table import Table
12
+ from rich.prompt import Prompt
13
+ from rich.style import Style
14
+ from typing import Dict, List, Any
15
+
16
+
17
+ # Internal utilities
18
+ from .message import start_message
19
+ from .call_stack import get_call_stack
20
+
21
+
22
+ class TVShowManager:
23
+ def __init__(self):
24
+ """
25
+ Initialize TVShowManager with provided column information.
26
+ """
27
+ self.console = Console()
28
+ self.tv_shows: List[Dict[str, Any]] = [] # List to store TV show data as dictionaries
29
+ self.slice_start: int = 0
30
+ self.slice_end: int = 5
31
+ self.step: int = self.slice_end
32
+ self.column_info = []
33
+
34
+ def set_slice_end(self, new_slice: int) -> None:
35
+ """
36
+ Set the end of the slice for displaying TV shows.
37
+
38
+ Parameters:
39
+ - new_slice (int): The new value for the slice end.
40
+ """
41
+ self.slice_end = new_slice
42
+ self.step = new_slice
43
+
44
+ def add_column(self, column_info: Dict[str, Dict[str, str]]) -> None:
45
+ """
46
+ Add column information.
47
+
48
+ Parameters:
49
+ - column_info (Dict[str, Dict[str, str]]): Dictionary containing column names, their colors, and justification.
50
+ """
51
+ self.column_info = column_info
52
+
53
+ def add_tv_show(self, tv_show: Dict[str, Any]):
54
+ """
55
+ Add a TV show to the list of TV shows.
56
+
57
+ Parameters:
58
+ - tv_show (Dict[str, Any]): Dictionary containing TV show details.
59
+ """
60
+ self.tv_shows.append(tv_show)
61
+
62
+ def display_data(self, data_slice: List[Dict[str, Any]]):
63
+ """
64
+ Display TV show data in a tabular format.
65
+
66
+ Parameters:
67
+ - data_slice (List[Dict[str, Any]]): List of dictionaries containing TV show details to display.
68
+ """
69
+ table = Table(border_style="white")
70
+
71
+ # Add columns dynamically based on provided column information
72
+ for col_name, col_style in self.column_info.items():
73
+ color = col_style.get("color", None)
74
+ if color:
75
+ style = Style(color=color)
76
+ else:
77
+ style = None
78
+ table.add_column(col_name, style=style, justify='center')
79
+
80
+ # Add rows dynamically based on available TV show data
81
+ for entry in data_slice:
82
+ # Create row data while handling missing keys
83
+ row_data = [entry.get(col_name, '') for col_name in self.column_info.keys()]
84
+ table.add_row(*row_data)
85
+
86
+ self.console.print(table)
87
+
88
+ def run_back_command(self, research_func: dict):
89
+ """
90
+ Executes a back-end search command by dynamically importing a module and invoking its search function.
91
+
92
+ Args:
93
+ research_func (dict): A dictionary containing:
94
+ - 'folder' (str): The absolute path to the directory containing the module to be executed.
95
+ """
96
+ try:
97
+
98
+ # Get site name from folder
99
+ site_name = (os.path.basename(research_func['folder']))
100
+
101
+ # Find the project root directory
102
+ current_path = research_func['folder']
103
+ while not os.path.exists(os.path.join(current_path, 'StreamingCommunity')):
104
+ current_path = os.path.dirname(current_path)
105
+
106
+ # Add project root to Python path
107
+ project_root = current_path
108
+ #print(f"[DEBUG] Project Root: {project_root}")
109
+
110
+ if project_root not in sys.path:
111
+ sys.path.insert(0, project_root)
112
+
113
+ # Import using full absolute import
114
+ module_path = f'StreamingCommunity.Api.Site.{site_name}'
115
+ #print(f"[DEBUG] Importing module: {module_path}")
116
+
117
+ # Import the module
118
+ module = importlib.import_module(module_path)
119
+
120
+ # Get the search function
121
+ search_func = getattr(module, 'search')
122
+
123
+ # Call the search function with the search string
124
+ search_func(None)
125
+
126
+ except Exception as e:
127
+ self.console.print(f"[red]Error during search: {e}")
128
+
129
+ # Print detailed traceback
130
+ import traceback
131
+ traceback.print_exc()
132
+
133
+ # Optionally remove the path if you want to clean up
134
+ if project_root in sys.path:
135
+ sys.path.remove(project_root)
136
+
137
+
138
+ def run(self, force_int_input: bool = False, max_int_input: int = 0) -> str:
139
+ """
140
+ Run the TV show manager application.
141
+
142
+ Parameters:
143
+ - force_int_input(bool): If True, only accept integer inputs from 0 to max_int_input
144
+ - max_int_input (int): range of row to show
145
+
146
+ Returns:
147
+ str: Last command executed before breaking out of the loop.
148
+ """
149
+ total_items = len(self.tv_shows)
150
+ last_command = "" # Variable to store the last command executed
151
+
152
+ while True:
153
+ start_message()
154
+
155
+ # Display table
156
+ self.display_data(self.tv_shows[self.slice_start:self.slice_end])
157
+
158
+ # Find research function from call stack
159
+ research_func = None
160
+ for reverse_fun in get_call_stack():
161
+ if reverse_fun['function'] == 'search' and reverse_fun['script'] == '__init__.py':
162
+ research_func = reverse_fun
163
+ logging.info(f"Found research_func: {research_func}")
164
+
165
+ # Handling user input for loading more items or quitting
166
+ if self.slice_end < total_items:
167
+ self.console.print(f"\n[green]Press [red]Enter [green]for next page, [red]'q' [green]to quit, or [red]'back' [green]to search.")
168
+
169
+ if not force_int_input:
170
+ key = Prompt.ask(
171
+ "\n[cyan]Insert media index [yellow](e.g., 1), [red]* [cyan]to download all media, "
172
+ "[yellow](e.g., 1-2) [cyan]for a range of media, or [yellow](e.g., 3-*) [cyan]to download from a specific index to the end"
173
+ )
174
+
175
+ else:
176
+ choices = [str(i) for i in range(0, max_int_input)]
177
+ choices.extend(["q", "quit", "b", "back"])
178
+
179
+ key = Prompt.ask("[cyan]Insert media [red]index", choices=choices, show_choices=False)
180
+ last_command = key
181
+
182
+ if key.lower() == "q" or key.lower() == "quit":
183
+ break
184
+
185
+ elif key == "":
186
+ self.slice_start += self.step
187
+ self.slice_end += self.step
188
+ if self.slice_end > total_items:
189
+ self.slice_end = total_items
190
+
191
+ elif (key.lower() == "b" or key.lower() == "back") and research_func:
192
+ self.run_back_command(research_func)
193
+
194
+ else:
195
+ break
196
+
197
+ else:
198
+ # Last slice, ensure all remaining items are shown
199
+ self.console.print(f"\n [green]You've reached the end. [red]Enter [green]for first page, [red]'q' [green]to quit, or [red]'back' [green]to search.")
200
+ if not force_int_input:
201
+ key = Prompt.ask(
202
+ "\n[cyan]Insert media index [yellow](e.g., 1), [red]* [cyan]to download all media, "
203
+ "[yellow](e.g., 1-2) [cyan]for a range of media, or [yellow](e.g., 3-*) [cyan]to download from a specific index to the end"
204
+ )
205
+
206
+ else:
207
+ choices = [str(i) for i in range(0, max_int_input)]
208
+ choices.extend(["q", "quit", "b", "back"])
209
+
210
+ key = Prompt.ask("[cyan]Insert media [red]index", choices=choices, show_choices=False)
211
+ last_command = key
212
+
213
+ if key.lower() == "q" or key.lower() == "quit":
214
+ break
215
+
216
+ elif key == "":
217
+ self.slice_start = 0
218
+ self.slice_end = self.step
219
+
220
+ elif (key.lower() == "b" or key.lower() == "back") and research_func:
221
+ self.run_back_command(research_func)
222
+
223
+ else:
224
+ break
225
+
226
+ return last_command
227
+
228
+ def clear(self):
229
+ self.tv_shows = []
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: StreamingCommunity
3
- Version: 2.5.0
3
+ Version: 2.5.2
4
4
  Summary: UNKNOWN
5
5
  Home-page: https://github.com/Lovi-0/StreamingCommunity
6
6
  Author: Lovi-0
@@ -0,0 +1,264 @@
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/Player/Helper/Vixcloud/__pycache__/js_parser.cpython-313.pyc,sha256=9MtRjbm6By72GjvBd1MKSXL1nDxS9hrU50seEc9S_sI,5836
10
+ StreamingCommunity/Api/Player/Helper/Vixcloud/__pycache__/js_parser.cpython-39.pyc,sha256=AzZtMLB2ZCqZF6X1tPyUtntCnvs1CWyKOtv0sItlvTQ,3025
11
+ StreamingCommunity/Api/Player/Helper/Vixcloud/__pycache__/util.cpython-313.pyc,sha256=LpgOkXgkjSfxvLogAXUAYz-quw-DMwJEk8cSuCl27DU,10227
12
+ StreamingCommunity/Api/Player/Helper/Vixcloud/__pycache__/util.cpython-39.pyc,sha256=X8sK63Va3T2MpCqF0Q847wdZlP28P7HUKvotOaw5D6A,6574
13
+ StreamingCommunity/Api/Player/__pycache__/ddl.cpython-313.pyc,sha256=HvOX2MXgDxGKw1HofuMy07Ag6Cuwqon5Kt9VKSB43GY,3318
14
+ StreamingCommunity/Api/Player/__pycache__/ddl.cpython-39.pyc,sha256=DqoerIcuXTqyFrBu5QQwuUIkpCWzJKbrw33kPwg2gpA,2530
15
+ StreamingCommunity/Api/Player/__pycache__/maxstream.cpython-313.pyc,sha256=bX6yadXqlbb1SM7lKbbfnICDnxdECf7md1xZnJhjxAA,6422
16
+ StreamingCommunity/Api/Player/__pycache__/maxstream.cpython-39.pyc,sha256=v-DKTsmARgSjurF8gMIAmCFaAi7snPmsx6o2T7yrrzs,3845
17
+ StreamingCommunity/Api/Player/__pycache__/supervideo.cpython-313.pyc,sha256=AsG3VKUZl_uFV4Dfe7jcPiIrnDoocF79lI2tDD4R8Qc,7028
18
+ StreamingCommunity/Api/Player/__pycache__/supervideo.cpython-39.pyc,sha256=kJu4LNdniHgLV242yoTzckcMMJNsTpNzWPiuxKeKlC8,5220
19
+ StreamingCommunity/Api/Player/__pycache__/vixcloud.cpython-313.pyc,sha256=pZTCk4d3hXG8tW7cjtqK7Ujgfta11Nk2Eym79gXirNc,11312
20
+ StreamingCommunity/Api/Player/__pycache__/vixcloud.cpython-39.pyc,sha256=ZILopG1g-bnYH-xCsaiCKYJ8g3OYRIP4bNWp6ys3t3c,7548
21
+ StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=gZFNPJahddRTELSdO4_-yt50wl0cZRDuxdRqIhYzSiQ,1219
22
+ StreamingCommunity/Api/Site/1337xx/costant.py,sha256=3jDI0qlysmtfiZIAciNA-pBLSza5GBYKZlONyMpb-FI,451
23
+ StreamingCommunity/Api/Site/1337xx/site.py,sha256=L5wvdb6S_FpEDBzUNMYPMdmSgHkRRTjGh4ULo6bAQeU,2873
24
+ StreamingCommunity/Api/Site/1337xx/title.py,sha256=UZph1P8BmDXT50yM-VSqKK4ZaTkCbFO_-YRKpXnnl48,1912
25
+ StreamingCommunity/Api/Site/1337xx/__pycache__/__init__.cpython-313.pyc,sha256=yDY6vPBUc2QmovQvfKwzB9KIC3IAoHzjkBq6tbFp8lo,1514
26
+ StreamingCommunity/Api/Site/1337xx/__pycache__/__init__.cpython-39.pyc,sha256=0_LbPjydZqSK_dIXwke-Y_3ndCa5-byhqrCUUXV0Rmk,1162
27
+ StreamingCommunity/Api/Site/1337xx/__pycache__/costant.cpython-313.pyc,sha256=U1syK8QTppaT7w71stwXXQSVSm8gSvSdjaCUuL_fyEY,924
28
+ StreamingCommunity/Api/Site/1337xx/__pycache__/costant.cpython-39.pyc,sha256=C2VaGr_h1Pkc7Y3HmaHEAFIprTr-depR2cHbAc_SY48,561
29
+ StreamingCommunity/Api/Site/1337xx/__pycache__/site.cpython-313.pyc,sha256=pmw8c937zSJM1dM1tWuCM9At5WtdK8-GV7hklh5wcOQ,3846
30
+ StreamingCommunity/Api/Site/1337xx/__pycache__/site.cpython-39.pyc,sha256=-ZMotqatjCLdEYdGWqfliyNkUR84ZxUV50cpNIs1F5w,2458
31
+ StreamingCommunity/Api/Site/1337xx/__pycache__/title.cpython-313.pyc,sha256=sfv-oEcJX-oWsD-lsBfRN0U3pjTy8ofiipz3hiNiHc8,2538
32
+ StreamingCommunity/Api/Site/1337xx/__pycache__/title.cpython-39.pyc,sha256=8fxkEYSjnszwQbSZXOzaCLvxE-HaE1UpQOz6yy2aNcA,1779
33
+ StreamingCommunity/Api/Site/altadefinizionegratis/__init__.py,sha256=sTUnun_Ew5YrxmpYZvwHV_qj-NIYTOpJOujwN0O7iU8,1210
34
+ StreamingCommunity/Api/Site/altadefinizionegratis/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
35
+ StreamingCommunity/Api/Site/altadefinizionegratis/film.py,sha256=DRjuGy6Ug_5MxLPscosvV9vFPT-9YrhfPTq3_fId9D0,2185
36
+ StreamingCommunity/Api/Site/altadefinizionegratis/site.py,sha256=Male8DG7nfF-i_MKt2vKcwNYBS2sRUIkN9FwwRitxRE,2972
37
+ StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/__init__.cpython-313.pyc,sha256=_k8WcIyI6o9ojUnQkzGwzy8NUMaDQMWg4uJPeh0dUZw,1515
38
+ StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/__init__.cpython-39.pyc,sha256=B5ufEqhXg29UKaD50DMX8gAYrJsM5tysqumbmxBVJMQ,1163
39
+ StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/costant.cpython-313.pyc,sha256=gjXd7644TvpI8DLJoO6SFzt0xAAtBS_bD9AWPVNrSfI,1433
40
+ StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/costant.cpython-39.pyc,sha256=x7_DXrkt1ZdChJA9QJohN8C2HxDQESt4rO7DB8zeEEc,692
41
+ StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/film.cpython-313.pyc,sha256=AOsdjVq9qlc52m1rNXoGeSe7rBYdCIF3_rnmMgppHiU,2371
42
+ StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/film.cpython-39.pyc,sha256=4Umf1wRmy8vU2ofFJpg9At2PAeTdFygPkNGu0is9R9s,1680
43
+ StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/site.cpython-313.pyc,sha256=XAZ50Ah6lIBGAyDbRLlg8_5sqppLXvJTBUAG228w-sU,3792
44
+ StreamingCommunity/Api/Site/altadefinizionegratis/__pycache__/site.cpython-39.pyc,sha256=yei85AjvYLq4cA4d8HLvHqwjJ6kVuBBsqRAx9w_1wW0,2582
45
+ StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=oTOYbtiwwNUiopzX4ZJCODQTZ528GAbLLaoNqsQOZmw,1288
46
+ StreamingCommunity/Api/Site/animeunity/costant.py,sha256=vH-74s9DLqMVTXwXsQe8_cTxWwpAkSv3O-xoiupEfSI,764
47
+ StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=662wBBBGeJkTICeSc4f1g5nPzINKvzCseWgaYnGaceg,4127
48
+ StreamingCommunity/Api/Site/animeunity/site.py,sha256=-uuTOt1Kg79Mu893OmSujaqDjIOiYXQA_5S0BtCXqsc,5519
49
+ StreamingCommunity/Api/Site/animeunity/__pycache__/__init__.cpython-313.pyc,sha256=GGL1_HQFvY_B9VbfmIEn9_n5Gilwx30QK219Y8tj-Xg,1597
50
+ StreamingCommunity/Api/Site/animeunity/__pycache__/__init__.cpython-39.pyc,sha256=ZBCqRtnxWF0chS4xMQygEHvEd16Dwnba4J51BDXUOgE,1169
51
+ StreamingCommunity/Api/Site/animeunity/__pycache__/costant.cpython-313.pyc,sha256=6zdLZC7O-rO-bKqAfX2_PxXjprdjsDGbQASq0Il2cps,1417
52
+ StreamingCommunity/Api/Site/animeunity/__pycache__/costant.cpython-39.pyc,sha256=u4EYT1O_i9XICaSVrXnMA_ronuTWbVENjSh0YBgy64c,678
53
+ StreamingCommunity/Api/Site/animeunity/__pycache__/film_serie.cpython-313.pyc,sha256=rUqncOSFYS0Hek3t8TMhZlbt-VK9LbiPx6Zmb5jcBS0,4732
54
+ StreamingCommunity/Api/Site/animeunity/__pycache__/film_serie.cpython-39.pyc,sha256=IutC64Wzaga2my5vfkuhVi5v-GOfbYDK3NaSe55RgjE,3073
55
+ StreamingCommunity/Api/Site/animeunity/__pycache__/site.cpython-313.pyc,sha256=LM1RqUEIRnU8G3XYIyp3TVIRXJw-O1GiWv3LOyGNQe4,5731
56
+ StreamingCommunity/Api/Site/animeunity/__pycache__/site.cpython-39.pyc,sha256=DyRaefFg_kOj7j3SW8PTb6He2msX4XvNIgTT-ygjV0A,4088
57
+ StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=Gv0xvTJMHru3YExAqQ-ZFfwIxs_227mB3d0JpsI3oAY,2983
58
+ StreamingCommunity/Api/Site/animeunity/util/__pycache__/ScrapeSerie.cpython-313.pyc,sha256=waoO8nRNv0YfkzJytOOyt6XXPYnw5_vN415XsIxx1YY,3928
59
+ StreamingCommunity/Api/Site/animeunity/util/__pycache__/ScrapeSerie.cpython-39.pyc,sha256=zEJRVnU5BkEhT9WM3Yt1voGsQeNFePm6XxX-zcOkd9I,2872
60
+ StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=ClPCBPR6dCdVIZvXknUNum86AOkxCycIKzNl4ZJGVPk,1230
61
+ StreamingCommunity/Api/Site/cb01new/costant.py,sha256=leKXcU72IMN-zDmfiz4fgncjGnxj1AGqmnv0FYJsY0k,779
62
+ StreamingCommunity/Api/Site/cb01new/film.py,sha256=3DnJMkkraQKHOwOa_SnjRkyl1u5snz2FxIi9QNAbcts,2200
63
+ StreamingCommunity/Api/Site/cb01new/site.py,sha256=eGPp0enGb-c2sBVVaRuAC6ykOPoPdiae-iFMm4BRScU,2447
64
+ StreamingCommunity/Api/Site/cb01new/__pycache__/__init__.cpython-313.pyc,sha256=wm_U1e32vxjHO8pCsvxBK3rQUfBBcfpqr4k9HQRyDmM,1509
65
+ StreamingCommunity/Api/Site/cb01new/__pycache__/__init__.cpython-39.pyc,sha256=Qj5-4h_cc1FTKok7rAW_y82xjcnAzKiOWk339R8RWDA,1154
66
+ StreamingCommunity/Api/Site/cb01new/__pycache__/costant.cpython-313.pyc,sha256=6eC1vvK85u3pgFl6FNnMSZlgHdjMwjlp_mpgrcvlmac,1422
67
+ StreamingCommunity/Api/Site/cb01new/__pycache__/costant.cpython-39.pyc,sha256=qsvFVuRLoLPdHAfuYfW0kx1M41g4hHCxqfrB5Nfx7JE,678
68
+ StreamingCommunity/Api/Site/cb01new/__pycache__/film.cpython-313.pyc,sha256=v7FrAi2-cuMxIFbLwFKhxZBQMogZ0ZUbOv9m7cfDwH4,2427
69
+ StreamingCommunity/Api/Site/cb01new/__pycache__/film.cpython-39.pyc,sha256=SznprEMzgRXYxoN2Q47_wFQJNKvJY3WL7KtwwBV-bcg,1689
70
+ StreamingCommunity/Api/Site/cb01new/__pycache__/site.cpython-313.pyc,sha256=tupHOZzfGilDcR5mPu622gqsJylBarU73PRvNzqO664,3287
71
+ StreamingCommunity/Api/Site/cb01new/__pycache__/site.cpython-39.pyc,sha256=fB-ee3XPsyf3ZEjzKB3K6oIJ-9jlTTeotXSeXe_8FUQ,2199
72
+ StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=3vjwaEXlnrDAProWxyWpkN2Zg528XnpNwUrOvyTHPTY,1374
73
+ StreamingCommunity/Api/Site/ddlstreamitaly/costant.py,sha256=6_ezKVvuGInDC7MxSxmQH3i-MGNu96cKy4DGb5OqT5o,841
74
+ StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=JoeCkT9JC3BJdRKe6jF5kdlCWIicJkSZ9cU9WEXS6JA,4243
75
+ StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=ffxgUxexE-EI5kyzLqS8FQVMuH4ro9athRtIRAxMCSM,3102
76
+ StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/__init__.cpython-313.pyc,sha256=X6qAGmbsToGfzGznyE7y9Rr6gq5wufDhlIuIozedI0s,1758
77
+ StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/__init__.cpython-39.pyc,sha256=-_gIqiXxVzz_m37uoUspFpflPhTg308vkMw7fl9WESc,1274
78
+ StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/costant.cpython-313.pyc,sha256=_ExXdTxa5qelbVFSakzXTQ2tCiJcVXMtHDQjhFbECJs,1508
79
+ StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/costant.cpython-39.pyc,sha256=tR5gBCDcPuZpuP8MvwMnhQKjFOMhSiHnxDd2fIU010M,718
80
+ StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/series.cpython-313.pyc,sha256=PkFz3Bzm0MFto93cu6BqFubOK2Egl8JizhMAPKKGnh4,4962
81
+ StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/series.cpython-39.pyc,sha256=MpBXiEVHGbM7qRILv9YNPCYwVktHRpB2mpp7MTrWxR8,3209
82
+ StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/site.cpython-313.pyc,sha256=kmktRb8gAvCbMcr7uK8O-2IQjdVGvi48Qi39oAN8CLE,3950
83
+ StreamingCommunity/Api/Site/ddlstreamitaly/__pycache__/site.cpython-39.pyc,sha256=7LeIuC5VMLz9uJvx5kYu8HaPlxplHtqJhrOm5AFtLoE,2633
84
+ StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=f7uA3VTANmWnLvYhjxMjzKRxU6FTgH2H8MSntWgc8jw,2652
85
+ StreamingCommunity/Api/Site/ddlstreamitaly/util/__pycache__/ScrapeSerie.cpython-313.pyc,sha256=M52bZsEIraLHJ1CxECH_Kme_IsI8Pf6XRC0k1apMf4U,3479
86
+ StreamingCommunity/Api/Site/ddlstreamitaly/util/__pycache__/ScrapeSerie.cpython-39.pyc,sha256=4XNeZuXxch6bY-7o2DV3YGMbK3ahmJbMs6qlZJrUoUM,2556
87
+ StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=1NUo7z1OqDQ-DmXj6Db303SeC-0OQ_ElKcxo73JbpOM,1221
88
+ StreamingCommunity/Api/Site/guardaserie/costant.py,sha256=xzfz7DFH872iThs09z8jV-r8y-QkQLC7tmuMvF9YTwk,779
89
+ StreamingCommunity/Api/Site/guardaserie/series.py,sha256=hFzqEdshUboPMdlkVPv4gXDujg_CPWMVoilxgCtsY_E,6941
90
+ StreamingCommunity/Api/Site/guardaserie/site.py,sha256=phfXe4UyGv-_ebtX-hXL7YuZJ_tzfy4MiKTBrA9Ggs4,2879
91
+ StreamingCommunity/Api/Site/guardaserie/__pycache__/__init__.cpython-313.pyc,sha256=cLl5Uy3uqjzSoMJdl077tJKTDrYYp0vurGh81wj4IRA,1516
92
+ StreamingCommunity/Api/Site/guardaserie/__pycache__/__init__.cpython-39.pyc,sha256=BQLBJ9hh2uletLylw7cLa8JFJq97NyGQ5My_u8NKe0k,1164
93
+ StreamingCommunity/Api/Site/guardaserie/__pycache__/costant.cpython-313.pyc,sha256=DmYFiFO1BRJuA-AhrmHkiy__kivnU9w97bxzXP_e_Ho,1423
94
+ StreamingCommunity/Api/Site/guardaserie/__pycache__/costant.cpython-39.pyc,sha256=NBC0UPzEjtGWicdqhtdgbcwvUrH40VgOumCs1ua3CtU,682
95
+ StreamingCommunity/Api/Site/guardaserie/__pycache__/series.cpython-313.pyc,sha256=kl1sov_1evwKQOYDG8dhAIrmlmiMdZcVMm1DOu3gZtM,6702
96
+ StreamingCommunity/Api/Site/guardaserie/__pycache__/series.cpython-39.pyc,sha256=TMRj1JQNCEspvMq481ESe3N2sxELUYJTiYdXmfFh-V8,4510
97
+ StreamingCommunity/Api/Site/guardaserie/__pycache__/site.cpython-313.pyc,sha256=fbSJqwIaoc1ICpeV9rV2SC0_i_XVjOCN2vsLt6Kg9-A,3682
98
+ StreamingCommunity/Api/Site/guardaserie/__pycache__/site.cpython-39.pyc,sha256=gSy0WNaP0JcOY3SLJ4vL4sHDJlfmbaUhxlITa7OYUbU,2502
99
+ StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=Os4lKYQB8PT1b-jzozRIpdovGh4gUQuXrPEHyLriYio,3399
100
+ StreamingCommunity/Api/Site/guardaserie/util/__pycache__/ScrapeSerie.cpython-313.pyc,sha256=lWiYEpNME4w65Vpo-sHVt_rbHvDYZswe9r6NAm05VBA,4110
101
+ StreamingCommunity/Api/Site/guardaserie/util/__pycache__/ScrapeSerie.cpython-39.pyc,sha256=5wvqVcO0FhPV56BD_p-sQaFeXZuDAzg6ftQGm0BXg5Y,2822
102
+ StreamingCommunity/Api/Site/ilcorsaronero/__init__.py,sha256=JBvYZqLlk5nckjYRApX5AZ58OfxF-yTTu6SE54F49Ms,1248
103
+ StreamingCommunity/Api/Site/ilcorsaronero/costant.py,sha256=2hSZ5m2CB23IV3HsSClx1yzHhjQsxcjV3gicuWfsQyE,777
104
+ StreamingCommunity/Api/Site/ilcorsaronero/site.py,sha256=_LD28s8zW8FfIq6p8Dg4qaZ0ogDLq-mQ59P3X3hGH2s,2240
105
+ StreamingCommunity/Api/Site/ilcorsaronero/title.py,sha256=SOymhdxwcMxBVfkeGBOLfgzZ-EF4keZ9BLRwVylk50E,1308
106
+ StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/__init__.cpython-313.pyc,sha256=NP6uJE07Lst8ucAZd6XXxYRH3Vl63fRMGCAYvUFANU8,1600
107
+ StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/__init__.cpython-39.pyc,sha256=_ug7gwxxe0S-5kdqFpqN50oZ9yPA6_EQynGdV5-d90Q,1204
108
+ StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/costant.cpython-313.pyc,sha256=506bImy3lgoWf4hvX3So5tJx9woQmiZg_CBYIJGHRI4,1425
109
+ StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/costant.cpython-39.pyc,sha256=4OxWgKRSwhbaCtPPSn23t0TARwi06_ajPHBoN0-PAfI,684
110
+ StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/site.cpython-313.pyc,sha256=I2AWEcwAYjKfYIw-BoA8bZxTNxOszO2HAVqk3lU1MzM,2775
111
+ StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/site.cpython-39.pyc,sha256=HlOZOCe7dUyKjDv5jiA0d0pVcDgPqeeM2liZEgaQyxA,1976
112
+ StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/title.cpython-313.pyc,sha256=7QfypsBwKE6yp91cGDkntYSDWMojvyfPuqtDVJLSiO8,1854
113
+ StreamingCommunity/Api/Site/ilcorsaronero/__pycache__/title.cpython-39.pyc,sha256=SoCnIPbLJM_-bF9lIwxNRDqQOk79v5G0za6EL5kvQJw,1334
114
+ StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py,sha256=1005qQmwCyaQXqn0_d2IYSG-nRe_B3k8yUijfVLlMnQ,5263
115
+ StreamingCommunity/Api/Site/ilcorsaronero/util/__pycache__/ilCorsarScraper.cpython-313.pyc,sha256=RvdH2_NwlgIvDhvbeM8uhoEyvTXiHCCm-AbIynmy4FE,7383
116
+ StreamingCommunity/Api/Site/ilcorsaronero/util/__pycache__/ilCorsarScraper.cpython-39.pyc,sha256=xDvFADFhaSg1uG8MSfxz8GFAkvH8lqC03mJWalLd_vs,4724
117
+ StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=0HRPWgz4pFpVR6_mUQy8SLGcUgQdseVrH-QqnfKlxW4,1177
118
+ StreamingCommunity/Api/Site/mostraguarda/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
119
+ StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=KzlA2auJVHSA-r4YTtMOzui1vBTKftwQnm4RJmbwkHs,3031
120
+ StreamingCommunity/Api/Site/mostraguarda/__pycache__/__init__.cpython-313.pyc,sha256=9MNZtjTUiE45UT96LhcKwJ4oqgQ293J-bGocwNOJ6Jo,1544
121
+ StreamingCommunity/Api/Site/mostraguarda/__pycache__/__init__.cpython-39.pyc,sha256=xGr_YVwP-umG77D2agGm8HN8xj3blHgeJSq0U16djfU,1171
122
+ StreamingCommunity/Api/Site/mostraguarda/__pycache__/costant.cpython-313.pyc,sha256=czO2FpxsGevYOzp8xW4VsFIZ22y8aWVdelCj2dQ0em4,1424
123
+ StreamingCommunity/Api/Site/mostraguarda/__pycache__/costant.cpython-39.pyc,sha256=HDWNKo6cvzhw8ES3SLCMckq9Xr9u3mc03H_VocHdTfg,683
124
+ StreamingCommunity/Api/Site/mostraguarda/__pycache__/film.cpython-313.pyc,sha256=jpeB2vfasSd54PshnEdLw_9HNCoCWb2EBicQ8V5cvls,3534
125
+ StreamingCommunity/Api/Site/mostraguarda/__pycache__/film.cpython-39.pyc,sha256=oRkVJoVKEQuS-BfpQ6tSa869lSOnZRYLSPwtFaO9g5o,2355
126
+ StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=TF8q_xHPXmwEkhDj3MS8xOVHgRQRmK-WNo0pQHChV74,1487
127
+ StreamingCommunity/Api/Site/streamingcommunity/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
128
+ StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=a-wjkgTWwp24kflNOJhVoatieLLOQ9jonJAe8oYJJQc,2330
129
+ StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=8oH3ag_rNaAJC-y4uBuMZNsyfRrx1JGj9zZliWDcfQo,7494
130
+ StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=FO4jNq-rKGP1jUQali_78UW088HtJ60u_GpcPYKLodA,4154
131
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/__init__.cpython-313.pyc,sha256=3M5pswYrA_EAdmbpR6agdyXSghh5RQKEalblf86oKQY,1755
132
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/__init__.cpython-39.pyc,sha256=gD1uoyZmEqJhbSmtdKUg7_PzyVxO4QhH_brYBuRu7YY,1323
133
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/costant.cpython-313.pyc,sha256=6Yc9nEbZZprXOvQAgdv7ZuHHQp1L9218KfKOD8XNt9Y,1430
134
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/costant.cpython-39.pyc,sha256=8-0POkvQUST5kv2knsNjEpwZdYY9QrPs3RmlLaMJ1Fs,689
135
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/film.cpython-313.pyc,sha256=8nKM9TLx41HnC4MOgIAn7CU_xXFLr7ZUTKjqtRHOOZg,2586
136
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/film.cpython-39.pyc,sha256=KwJL_p9K71W0wOZyHTwEBd4mRVAE-xZUgtkz0SNOL34,1760
137
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/series.cpython-313.pyc,sha256=e1Fqm4qhFX7VmQHst8dSdE8jV8ddCR1LYbEUqu3ougY,7511
138
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/series.cpython-39.pyc,sha256=L6YBgLDrvw_T6QAkQ_0x5vRgLL3F_zMg4ksC4uAfyhg,4841
139
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/site.cpython-313.pyc,sha256=t6qVrP-UxddL-YnQjggZLNn-wDhPfOFFTDQoRORUiGE,5105
140
+ StreamingCommunity/Api/Site/streamingcommunity/__pycache__/site.cpython-39.pyc,sha256=iRLTBTic6_JjjAxlgngsgwym25Z_KoqtXjWxS7SDNWU,3568
141
+ StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=1IY7Px_jtrH6TvV7rhZ_nu6M1jdpTBqg5X4gXINlOIk,4384
142
+ StreamingCommunity/Api/Site/streamingcommunity/util/__pycache__/ScrapeSerie.cpython-313.pyc,sha256=nY-VLW_lfApaJeleUKDWckH6nd1bBCfldcDxPaxavHM,5063
143
+ StreamingCommunity/Api/Site/streamingcommunity/util/__pycache__/ScrapeSerie.cpython-39.pyc,sha256=U6KE9RPoQC5ptBTu-u1MsqKuOyO2UB_Bof0-_b7j8cY,3582
144
+ StreamingCommunity/Api/Template/__init__.py,sha256=lhVpudlILM1L9iBZ_7vfYwgKyrdR1OWeLvk364-fJpU,48
145
+ StreamingCommunity/Api/Template/site.py,sha256=FR-tCGnrGtrL5CNOL2MvUyJVn0lx-d1-KQujnY2Gy6A,3021
146
+ StreamingCommunity/Api/Template/Class/SearchType.py,sha256=lJ054oi7baFU8HoXzq_mO4foRz0wtF9GIGOOFS8VpmY,2632
147
+ StreamingCommunity/Api/Template/Class/__pycache__/SearchType.cpython-313.pyc,sha256=HbkMRLXPR-cZVpArnhidx41C-68FUgUEhxYig5ygawM,4158
148
+ StreamingCommunity/Api/Template/Class/__pycache__/SearchType.cpython-39.pyc,sha256=gUc4OPrhz3mWemp6PyMZXVKbaCT4TDgcaYxSGFUsV-k,3442
149
+ StreamingCommunity/Api/Template/Util/__init__.py,sha256=HVbHmSrNzalv8yN_pMwEEt9xaHvGOXiciCopZ1ZGv78,225
150
+ StreamingCommunity/Api/Template/Util/get_domain.py,sha256=Ag0mVAQ07j_GFy2n_tkiVYELzPKS8kt3yJxf3AjXTuw,7327
151
+ StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=jGJHN-xm8TeyRnHerPZ6VaX3rGMimD-luqqjM2NbWRE,6674
152
+ StreamingCommunity/Api/Template/Util/recall_search.py,sha256=N-h00R2S8rQud3mNtUmaakK_8d9e5YxgHv4QwcJ4aZw,1184
153
+ StreamingCommunity/Api/Template/Util/__pycache__/__init__.cpython-313.pyc,sha256=LvqKTU2Y_c-e8PjCgOZCEoSCfE1f-0dpXf2f0KyVGSE,490
154
+ StreamingCommunity/Api/Template/Util/__pycache__/__init__.cpython-39.pyc,sha256=-Y2HPLJyDAGmajsJdPJWpJedtJIL7bcuiS-BYisPOSA,468
155
+ StreamingCommunity/Api/Template/Util/__pycache__/get_domain.cpython-313.pyc,sha256=GsLFb6t5OCQOgnrPv9gQu7fVVsbHUOF6p6WwNmMxqaY,8817
156
+ StreamingCommunity/Api/Template/Util/__pycache__/get_domain.cpython-39.pyc,sha256=HOXDibXOpIDIIw7O68WqbuxZ-vkaNwkXGrKdQ5NRCRI,5546
157
+ StreamingCommunity/Api/Template/Util/__pycache__/manage_ep.cpython-313.pyc,sha256=kMPfssY-AP89hIap_Z5SvUsLKOF5CdhVUpt1hQRHhPA,7068
158
+ StreamingCommunity/Api/Template/Util/__pycache__/manage_ep.cpython-39.pyc,sha256=67Wl1rhTqfUyuE3uVeSVeGZihPd2rTHtdA9uc87WQg8,4982
159
+ StreamingCommunity/Api/Template/Util/__pycache__/recall_search.cpython-313.pyc,sha256=mX0gNjldfTg3HLxK-vYSz-z0cpKJrdT1i6-yzfZU-4c,1547
160
+ StreamingCommunity/Api/Template/Util/__pycache__/recall_search.cpython-39.pyc,sha256=gOy2dsELS7Bwc3nXSmTFU6aIMAiaLG1UmuKfUavyhlY,1088
161
+ StreamingCommunity/Api/Template/__pycache__/__init__.cpython-313.pyc,sha256=X_rO3Mv-ldKVRkCxW9tGWI5yMK1eLvPcH5NnozleSco,243
162
+ StreamingCommunity/Api/Template/__pycache__/__init__.cpython-39.pyc,sha256=cOZegogFTO3-tjmebHVZFLf5oboH-436QT0HSb9zs88,232
163
+ StreamingCommunity/Api/Template/__pycache__/site.cpython-313.pyc,sha256=imIypHPawz0gQfZ149moJoYB1lmGDge-qxD2GByuRbo,3034
164
+ StreamingCommunity/Api/Template/__pycache__/site.cpython-39.pyc,sha256=qsYfD5cqRbNrkBZ7GwEQwotC0RS3qtvW4F13c1XnujM,1705
165
+ StreamingCommunity/Lib/Downloader/__init__.py,sha256=vAn-rpmlSmojvz4Quv47A5HLq4yBR_7noy4r6hqk0OQ,144
166
+ StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=VkRvhdoLhNKLTIyMaQDofRDnsqeF0WJqAJuA1qzzbe4,41992
167
+ StreamingCommunity/Lib/Downloader/HLS/proxyes.py,sha256=Mrs5Mr6ATv-6BUS7CLcZjw3JNH7g_XOz7boeB1oQAQ8,3385
168
+ StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=31U-l8zNAyZdT7bOL6P8qrZwtIKcGbB0nE7SHot_b_8,23162
169
+ StreamingCommunity/Lib/Downloader/HLS/__pycache__/downloader.cpython-313.pyc,sha256=bYF8mDN-UNj-Uh1fXbVnVPe695sADsHxx8cBzZ8S_A0,45027
170
+ StreamingCommunity/Lib/Downloader/HLS/__pycache__/downloader.cpython-39.pyc,sha256=N5DK-mr2GMSQj4G5G-o-lXbXhuAEG85pOW29NH6DyQs,26217
171
+ StreamingCommunity/Lib/Downloader/HLS/__pycache__/proxyes.cpython-313.pyc,sha256=HVt4t8HlHqLWR0Zk5-Dn1NEL_Ff2Kfe8fNXidDsPqJk,5191
172
+ StreamingCommunity/Lib/Downloader/HLS/__pycache__/proxyes.cpython-39.pyc,sha256=S9dbVNjxEsUa0d8KGrXQCvxpee3ePtGU-69v8nWpqtU,3664
173
+ StreamingCommunity/Lib/Downloader/HLS/__pycache__/segments.cpython-313.pyc,sha256=GSZDYq1PNIA4MIdnDPOkyoIU4ip8z1q-XaM3SHIOMSY,26061
174
+ StreamingCommunity/Lib/Downloader/HLS/__pycache__/segments.cpython-39.pyc,sha256=63_bgIHhHQDU2vcd6KWj62fpmKvvCdzsyq_FTnNRohY,13629
175
+ StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=gWhNHhL5f3bXAGUaOlH2wCwda0sKi-R9s6PxOIp7LrU,6028
176
+ StreamingCommunity/Lib/Downloader/MP4/__pycache__/downloader.cpython-313.pyc,sha256=-dh1Qw8wPujdz5PTsMiWhvUyB6PnnIOv5dY-_yxxocU,7994
177
+ StreamingCommunity/Lib/Downloader/MP4/__pycache__/downloader.cpython-39.pyc,sha256=96dQbRKMU8WJ9hM9pNv-llnDawumT9YgLOmvMDww9RY,4321
178
+ StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=Jo7qdb4C51v5zbwfRpKPsG5x38oLMWer6l1sK12TXoM,11525
179
+ StreamingCommunity/Lib/Downloader/TOR/__pycache__/downloader.cpython-313.pyc,sha256=9JJUz2toaw1T0XGuZQy6cK9Hd5cmYFDS8fn4uuJA_R0,13962
180
+ StreamingCommunity/Lib/Downloader/TOR/__pycache__/downloader.cpython-39.pyc,sha256=v6aL-gLAFJW-MO9s6YVYnkDpkMAc0JlvKP5AryAHhbQ,7905
181
+ StreamingCommunity/Lib/Downloader/__pycache__/__init__.cpython-313.pyc,sha256=JDnHoeBClT3DooC-uraKjJkZ_uAeRniQnnUj08K01RU,361
182
+ StreamingCommunity/Lib/Downloader/__pycache__/__init__.cpython-39.pyc,sha256=_56pMgkoyjbJnHKdkCvDU6LDhRndZEg4ybXYUBaqUqg,348
183
+ StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=0KehwaTYL72PJaJJo2fzveGgc9F2-abIk7w6gXsfX1w,135
184
+ StreamingCommunity/Lib/FFmpeg/capture.py,sha256=YptVE5Ff6-hJXmsARxtXclWXmVl16y6QLR-VMybBaEg,5601
185
+ StreamingCommunity/Lib/FFmpeg/command.py,sha256=EfI3Q4tQkV7XmKWx0eBDnuIhn0O_lfPiAiI5IET3nLk,10289
186
+ StreamingCommunity/Lib/FFmpeg/util.py,sha256=QTtBaFdrUa5CFSPq1ycr3_zw81A7zVRmQN7FoxUwuR8,8341
187
+ StreamingCommunity/Lib/FFmpeg/__pycache__/__init__.cpython-313.pyc,sha256=df9hULGzemOXE00qS29FywPCfxX62bNciI4wQRwzq_I,369
188
+ StreamingCommunity/Lib/FFmpeg/__pycache__/__init__.cpython-39.pyc,sha256=6uLXxz97bmoPNMnpD5SsQgu4kIcefVPcLkwUiQENa7A,351
189
+ StreamingCommunity/Lib/FFmpeg/__pycache__/capture.cpython-313.pyc,sha256=6ZNrljWgeCxyqRvFynI84RAMYSV-vMb9jJNdB1mgPeo,7148
190
+ StreamingCommunity/Lib/FFmpeg/__pycache__/capture.cpython-39.pyc,sha256=IExh7Bdc4aSIEc7gxOlhRauJHj4VfbQlDVQIgQ9-yPs,4160
191
+ StreamingCommunity/Lib/FFmpeg/__pycache__/command.cpython-313.pyc,sha256=0eqyDARzhzxSV-7iZ7M5xlLfs22V_dla1RIx31rPo0c,12076
192
+ StreamingCommunity/Lib/FFmpeg/__pycache__/command.cpython-39.pyc,sha256=TWdFIMSosQedobVvguRmvv2efpBYX_dSM-3WDklUdOo,6563
193
+ StreamingCommunity/Lib/FFmpeg/__pycache__/util.cpython-313.pyc,sha256=zC48M2tgPBGqAyrx5SePDdByZYrUrFSEofWpG5pV7Mc,9876
194
+ StreamingCommunity/Lib/FFmpeg/__pycache__/util.cpython-39.pyc,sha256=wTn0NSw4aad6tmmGhbZkSRrr1mJzFJj_DxeRs3Q9iL4,7183
195
+ StreamingCommunity/Lib/M3U8/__init__.py,sha256=sD2VIslF43OrudA1r-9xkSfUvSblr1LOZpaIM89F6M4,175
196
+ StreamingCommunity/Lib/M3U8/decryptor.py,sha256=y2YLw_z5h2UG4-AAHSRQVgNnWra9pSPYW1bB3rrGOjs,6529
197
+ StreamingCommunity/Lib/M3U8/estimator.py,sha256=fG34nlnz7ida0-EeZgnY2-nF2MX4yiStarp84JEblAA,9610
198
+ StreamingCommunity/Lib/M3U8/parser.py,sha256=xmyCU4AYGIOUheTZ4OBPmQl_R4dJ3Y72i9UUa6_aErA,23553
199
+ StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=PWHdooOpXR2XNzsgniuyYL-w2YApO75s8Y1kEu_M88w,1846
200
+ StreamingCommunity/Lib/M3U8/__pycache__/__init__.cpython-313.pyc,sha256=lWPiI3W8gpI4vKTaB7_TjdLyyCQVeYraGc0Alyey-9Y,405
201
+ StreamingCommunity/Lib/M3U8/__pycache__/__init__.cpython-39.pyc,sha256=86xu3asikeCQ7sXFySEzar_wECJfE9w6TpZe1q4kbvw,391
202
+ StreamingCommunity/Lib/M3U8/__pycache__/decryptor.cpython-313.pyc,sha256=DVA4u81iQ1YpGMSWxrrJ-3SnOFo9bDfkLvFgLx8Xprg,7763
203
+ StreamingCommunity/Lib/M3U8/__pycache__/decryptor.cpython-39.pyc,sha256=1LMj0lSWqYgUsVcFkUd0-Ut3AWZt5wYCRjHBSFXIqS0,4519
204
+ StreamingCommunity/Lib/M3U8/__pycache__/estimator.cpython-313.pyc,sha256=cTmFKoFynkm1_knkmm1u6efnmxxieqKpuax3A-5G3Ms,11348
205
+ StreamingCommunity/Lib/M3U8/__pycache__/estimator.cpython-39.pyc,sha256=WvpJzSruOyTBROOGe46S_aEKPNa2H6BAlqfiFFEe-5U,6749
206
+ StreamingCommunity/Lib/M3U8/__pycache__/parser.cpython-313.pyc,sha256=2rUV0Bc68SP_jKPsJus7-uLPuCqZfOS75IYjYWq4_80,26013
207
+ StreamingCommunity/Lib/M3U8/__pycache__/parser.cpython-39.pyc,sha256=r5wRo-Yuj_L6Kk3gJpcaKvEQoK4Zo7n0ciwQMrNdnEg,19852
208
+ StreamingCommunity/Lib/M3U8/__pycache__/url_fixer.cpython-313.pyc,sha256=noGyCLmrSD9wLD4zoOwcP4YMpDvsHhZSJHVJ72ArBXc,2263
209
+ StreamingCommunity/Lib/M3U8/__pycache__/url_fixer.cpython-39.pyc,sha256=fUNsoTXLsUCnsv4zx4IM8dSAFVoNgVW36dgbszlFS8I,1960
210
+ StreamingCommunity/Lib/TMBD/__init__.py,sha256=b3yUqfeBFpnKH-MScrZ3r90cpXc2ufCC-El3whK1zk8,55
211
+ StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=HEL3jAqUYtVgX7GCaw60EAD3JGvEJLOQXfD6lRYEjxA,1968
212
+ StreamingCommunity/Lib/TMBD/tmdb.py,sha256=bHaRO073fmVMALY9S7N6_kiG3fhapKR_5fY6PaCBMXk,12026
213
+ StreamingCommunity/Lib/TMBD/__pycache__/__init__.cpython-313.pyc,sha256=nP14UWzjD4aclHKUsgMZdUOJcgEJ5sNz6ntCjdI6FQY,262
214
+ StreamingCommunity/Lib/TMBD/__pycache__/__init__.cpython-39.pyc,sha256=r-hpJCokJpPCNE2HAfbZuCGOP2o-y87Pp-edXXI_5q0,252
215
+ StreamingCommunity/Lib/TMBD/__pycache__/obj_tmbd.cpython-313.pyc,sha256=wgaxkUxrD9cTGc3EbEv_RHoJ2vn6rqX7z90lcGR084U,4242
216
+ StreamingCommunity/Lib/TMBD/__pycache__/obj_tmbd.cpython-39.pyc,sha256=InZMEi0v51uR9QcJeuslYBDXX3KNJfTcBd8v0f2qVuA,1966
217
+ StreamingCommunity/Lib/TMBD/__pycache__/tmdb.cpython-313.pyc,sha256=Cp2t3VuPx3nHWjmoWbGxk_cQGPsiG4UcsJ71z-nMOF0,13341
218
+ StreamingCommunity/Lib/TMBD/__pycache__/tmdb.cpython-39.pyc,sha256=-KBcTJ9bsqkXDSSPMwqwtWelceUO8BTU_K0J2reNw9A,9999
219
+ StreamingCommunity/Upload/update.py,sha256=ly2E4gf5RCkhlHvDyVNP57jkGGH41V-UHLYwBwgypP4,2324
220
+ StreamingCommunity/Upload/version.py,sha256=Xfdnl1sIU9SpkydnIJzm3Hb_0PzIGi7zcIVtRZgRP14,175
221
+ StreamingCommunity/Upload/__pycache__/update.cpython-313.pyc,sha256=tND00tvZNaxoLh2zt0pq-FH_TZcLYD4QKisnBMqr09E,3179
222
+ StreamingCommunity/Upload/__pycache__/update.cpython-39.pyc,sha256=LXkWMtrFzIfCXg54jmdaptRVG954CfjWcDI8j6cj0o0,1931
223
+ StreamingCommunity/Upload/__pycache__/version.cpython-313.pyc,sha256=xqdQNVIOziTWouAwFFle1Bu886B0Gw1rFUWNykwYIKI,388
224
+ StreamingCommunity/Upload/__pycache__/version.cpython-39.pyc,sha256=hGq7h3lf3zzG1B7EOTJGB-sf3NQ6OUHhY4tXRWssjlk,365
225
+ StreamingCommunity/Util/_jsonConfig.py,sha256=i-AIu66BJ1neExPumcasvfC7QbjWpWGr9071r9-19k0,7843
226
+ StreamingCommunity/Util/call_stack.py,sha256=zuYbO8dV8bCa7fCdtaKQYuheA5K7BkTm3Oj8JA6GCpM,1417
227
+ StreamingCommunity/Util/color.py,sha256=1iQUf5xDp5XKKbXl9MvKEXJvv44Zf0P4J2Nu5ATIId8,479
228
+ StreamingCommunity/Util/console.py,sha256=bXP_iibXMpRIJ_zs03xFmSbkvMP3SguIuEUJZovoOqw,230
229
+ StreamingCommunity/Util/ffmpeg_installer.py,sha256=IxhytuUmkwthyz0ko6aBIrSPcPl2tXqHe-oDmGjDHn0,14924
230
+ StreamingCommunity/Util/headers.py,sha256=igBcdy99BlQbMoBprfB4FfCX9DBcgci6Mlm_pe3Fv6o,4886
231
+ StreamingCommunity/Util/logger.py,sha256=J-UTRHT4-jfmdEWozsTRD0nfvLHVcXsNO59WGnU7cEg,2173
232
+ StreamingCommunity/Util/message.py,sha256=pgUf50z4kSJjKHBlBKn5bd26xlAAEvlLiMs9dvcvJ_s,3675
233
+ StreamingCommunity/Util/os.py,sha256=zqDlFq5CEOOhR14lStYogXJ78UlMv2xz2nakpHbpumw,18607
234
+ StreamingCommunity/Util/table.py,sha256=kXCx1zT9jaXQJuBG5oJBkvDJh3JL-f5x5OYaTOMc14o,8624
235
+ StreamingCommunity/Util/__pycache__/_jsonConfig.cpython-313.pyc,sha256=O1ahugtr6ZR4REkCwGnz5jOyjSs0geMxpJLru44W3WU,10367
236
+ StreamingCommunity/Util/__pycache__/_jsonConfig.cpython-39.pyc,sha256=8vWj2m3WFAqeBVVVuNSv7mCat2KAV7f_v0Uqf5EL4vI,7752
237
+ StreamingCommunity/Util/__pycache__/call_stack.cpython-313.pyc,sha256=KHFylDRsqIvZYB_el40T2LlXoQdq5JrZ51u5wga3wtk,1737
238
+ StreamingCommunity/Util/__pycache__/call_stack.cpython-39.pyc,sha256=lgFRZo89NXvXo8-Ti1DTMsdWz8lmi8b6V4W_Nxwyg84,1362
239
+ StreamingCommunity/Util/__pycache__/color.cpython-313.pyc,sha256=zk5vvfba9JFynCtJ4Ok1hQAMl97SNI0kJ7rKF861vY8,838
240
+ StreamingCommunity/Util/__pycache__/color.cpython-39.pyc,sha256=A_mAlurJdn7ZdcmbeS9BF6uOyIAqKCsY01KNxYa1WKo,704
241
+ StreamingCommunity/Util/__pycache__/console.cpython-313.pyc,sha256=AQXVdaclOrGaKKYuxpb_YAoIjlu3HTTzL7yZ9s57NEM,473
242
+ StreamingCommunity/Util/__pycache__/console.cpython-39.pyc,sha256=Gl7cjTS4ipO9ueaWpK9-KRYBLCIQN9VpoVJsVbNlS3k,430
243
+ StreamingCommunity/Util/__pycache__/ffmpeg_installer.cpython-313.pyc,sha256=aroZB1OczpL03EqVqy-E9_3jk1OjPBbV_uF09xyIxC8,17469
244
+ StreamingCommunity/Util/__pycache__/ffmpeg_installer.cpython-39.pyc,sha256=RlkCpFC-PThigHvjcilySiLa_1EmduwnxmDIMn-Yidc,11241
245
+ StreamingCommunity/Util/__pycache__/headers.cpython-313.pyc,sha256=ec2zoxLQzDhrpWrLEX8fLxabvih1zLtM9-e6-w7yW94,5167
246
+ StreamingCommunity/Util/__pycache__/headers.cpython-39.pyc,sha256=fG3woemFtM3BjPmBcCFkpTInDBb1Ki4vOesHgdKAuU8,4035
247
+ StreamingCommunity/Util/__pycache__/logger.cpython-313.pyc,sha256=KYhjk_p0Db2tybNJPgTxhAK6wDViqCa4E0n5Vjs7Jjc,3388
248
+ StreamingCommunity/Util/__pycache__/logger.cpython-39.pyc,sha256=qP90s5R1RjYKXPE0CiCVkcYdiMg6iXuTUaXfS8aFi4w,1950
249
+ StreamingCommunity/Util/__pycache__/message.cpython-313.pyc,sha256=ybYvHz5HTUm6BPNsYn34lYaDMCzeecKrShM69D-3NUo,4081
250
+ StreamingCommunity/Util/__pycache__/message.cpython-39.pyc,sha256=iE7m2tkX-5ow0CEubTj1fPzrgDkw9lfrBev_wfG64kM,3311
251
+ StreamingCommunity/Util/__pycache__/os.cpython-313.pyc,sha256=55WJdvS3AdmagQe2Z8z9m901hRXQaTsxYmiMsDnq-UA,23788
252
+ StreamingCommunity/Util/__pycache__/os.cpython-39.pyc,sha256=9CR1poCmwBpgiRRYnGQoKpWSmId_Tqz4nZr0Eoa3MKk,15871
253
+ StreamingCommunity/Util/__pycache__/table.cpython-313.pyc,sha256=pnUc7eKJKKyiNicWgM47_-OOLuFegqJpnDcCGsiQzRo,9264
254
+ StreamingCommunity/Util/__pycache__/table.cpython-39.pyc,sha256=G369IECEnLZb4bDOOARkqL3Bwb-i4RI1E2VkkQyfVoE,6299
255
+ StreamingCommunity/__pycache__/__init__.cpython-313.pyc,sha256=bZIDBky6wdsvLFKfySK-fBvGly9hcpId8gTStaQiJao,180
256
+ StreamingCommunity/__pycache__/__init__.cpython-39.pyc,sha256=V7qr67Uf3KswRhYvKR8DsNcltwVEWLoaP4Vqqg6iHt0,174
257
+ StreamingCommunity/__pycache__/run.cpython-313.pyc,sha256=k7PXQJlsxgeOOeB8PAiudCJ7tMqYxpDQeKPzBqKh-ms,11080
258
+ StreamingCommunity/__pycache__/run.cpython-39.pyc,sha256=b7cchTfyo0itJoNgRHokO-qlH4_Um0M6x9S3MbnA8gs,6873
259
+ StreamingCommunity-2.5.2.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
260
+ StreamingCommunity-2.5.2.dist-info/METADATA,sha256=BCys-L2Kn_A2Ai_9ahsVOgvtko_aWsd9X4lJzuSMwXE,17016
261
+ StreamingCommunity-2.5.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
262
+ StreamingCommunity-2.5.2.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
263
+ StreamingCommunity-2.5.2.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
264
+ StreamingCommunity-2.5.2.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- StreamingCommunity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- StreamingCommunity/run.py,sha256=cWm5QFKMQU7zVuNJzlL7Fv2fT1Apl9JVHm2ZBDiKYh4,9011
3
- StreamingCommunity-2.5.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
4
- StreamingCommunity-2.5.0.dist-info/METADATA,sha256=jcuxKg4KZOPwqqB44PABoMBmBvnlaNmHJ4Nyg8rHZGE,17016
5
- StreamingCommunity-2.5.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
6
- StreamingCommunity-2.5.0.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
7
- StreamingCommunity-2.5.0.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
8
- StreamingCommunity-2.5.0.dist-info/RECORD,,