plexflow 0.0.64__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.
Files changed (256) hide show
  1. plexflow/__init__.py +0 -0
  2. plexflow/__main__.py +15 -0
  3. plexflow/core/.DS_Store +0 -0
  4. plexflow/core/__init__.py +0 -0
  5. plexflow/core/context/__init__.py +0 -0
  6. plexflow/core/context/metadata/__init__.py +0 -0
  7. plexflow/core/context/metadata/context.py +32 -0
  8. plexflow/core/context/metadata/tmdb/__init__.py +0 -0
  9. plexflow/core/context/metadata/tmdb/context.py +45 -0
  10. plexflow/core/context/partial_context.py +46 -0
  11. plexflow/core/context/partials/__init__.py +8 -0
  12. plexflow/core/context/partials/cache.py +16 -0
  13. plexflow/core/context/partials/context.py +12 -0
  14. plexflow/core/context/partials/ids.py +37 -0
  15. plexflow/core/context/partials/movie.py +115 -0
  16. plexflow/core/context/partials/tgx_batch.py +33 -0
  17. plexflow/core/context/partials/tgx_context.py +34 -0
  18. plexflow/core/context/partials/torrents.py +23 -0
  19. plexflow/core/context/partials/watchlist.py +35 -0
  20. plexflow/core/context/plexflow_context.py +29 -0
  21. plexflow/core/context/plexflow_property.py +36 -0
  22. plexflow/core/context/root/__init__.py +0 -0
  23. plexflow/core/context/root/context.py +25 -0
  24. plexflow/core/context/select/__init__.py +0 -0
  25. plexflow/core/context/select/context.py +45 -0
  26. plexflow/core/context/torrent/__init__.py +0 -0
  27. plexflow/core/context/torrent/context.py +43 -0
  28. plexflow/core/context/torrent/tpb/__init__.py +0 -0
  29. plexflow/core/context/torrent/tpb/context.py +45 -0
  30. plexflow/core/context/torrent/yts/__init__.py +0 -0
  31. plexflow/core/context/torrent/yts/context.py +45 -0
  32. plexflow/core/context/watchlist/__init__.py +0 -0
  33. plexflow/core/context/watchlist/context.py +46 -0
  34. plexflow/core/downloads/__init__.py +0 -0
  35. plexflow/core/downloads/candidates/__init__.py +0 -0
  36. plexflow/core/downloads/candidates/download_candidate.py +210 -0
  37. plexflow/core/downloads/candidates/filtered.py +51 -0
  38. plexflow/core/downloads/candidates/utils.py +39 -0
  39. plexflow/core/env/__init__.py +0 -0
  40. plexflow/core/env/env.py +31 -0
  41. plexflow/core/genai/__init__.py +0 -0
  42. plexflow/core/genai/bot.py +9 -0
  43. plexflow/core/genai/plexa.py +54 -0
  44. plexflow/core/genai/torrent/imdb_verify.py +65 -0
  45. plexflow/core/genai/torrent/movie.py +25 -0
  46. plexflow/core/genai/utils/__init__.py +0 -0
  47. plexflow/core/genai/utils/loader.py +5 -0
  48. plexflow/core/metadata/__init__.py +0 -0
  49. plexflow/core/metadata/auto/__init__.py +0 -0
  50. plexflow/core/metadata/auto/auto_meta.py +40 -0
  51. plexflow/core/metadata/auto/auto_providers/__init__.py +0 -0
  52. plexflow/core/metadata/auto/auto_providers/auto/__init__.py +0 -0
  53. plexflow/core/metadata/auto/auto_providers/auto/episode.py +49 -0
  54. plexflow/core/metadata/auto/auto_providers/auto/item.py +55 -0
  55. plexflow/core/metadata/auto/auto_providers/auto/movie.py +13 -0
  56. plexflow/core/metadata/auto/auto_providers/auto/season.py +43 -0
  57. plexflow/core/metadata/auto/auto_providers/auto/show.py +26 -0
  58. plexflow/core/metadata/auto/auto_providers/imdb/__init__.py +0 -0
  59. plexflow/core/metadata/auto/auto_providers/imdb/movie.py +36 -0
  60. plexflow/core/metadata/auto/auto_providers/imdb/show.py +45 -0
  61. plexflow/core/metadata/auto/auto_providers/moviemeter/__init__.py +0 -0
  62. plexflow/core/metadata/auto/auto_providers/moviemeter/movie.py +40 -0
  63. plexflow/core/metadata/auto/auto_providers/plex/__init__.py +0 -0
  64. plexflow/core/metadata/auto/auto_providers/plex/movie.py +39 -0
  65. plexflow/core/metadata/auto/auto_providers/tmdb/__init__.py +0 -0
  66. plexflow/core/metadata/auto/auto_providers/tmdb/episode.py +30 -0
  67. plexflow/core/metadata/auto/auto_providers/tmdb/movie.py +36 -0
  68. plexflow/core/metadata/auto/auto_providers/tmdb/season.py +23 -0
  69. plexflow/core/metadata/auto/auto_providers/tmdb/show.py +41 -0
  70. plexflow/core/metadata/auto/auto_providers/tmdb.py +92 -0
  71. plexflow/core/metadata/auto/auto_providers/tvdb/__init__.py +0 -0
  72. plexflow/core/metadata/auto/auto_providers/tvdb/episode.py +28 -0
  73. plexflow/core/metadata/auto/auto_providers/tvdb/movie.py +36 -0
  74. plexflow/core/metadata/auto/auto_providers/tvdb/season.py +25 -0
  75. plexflow/core/metadata/auto/auto_providers/tvdb/show.py +41 -0
  76. plexflow/core/metadata/providers/__init__.py +0 -0
  77. plexflow/core/metadata/providers/imdb/__init__.py +0 -0
  78. plexflow/core/metadata/providers/imdb/datatypes.py +53 -0
  79. plexflow/core/metadata/providers/imdb/imdb.py +112 -0
  80. plexflow/core/metadata/providers/moviemeter/__init__.py +0 -0
  81. plexflow/core/metadata/providers/moviemeter/datatypes.py +111 -0
  82. plexflow/core/metadata/providers/moviemeter/moviemeter.py +42 -0
  83. plexflow/core/metadata/providers/plex/__init__.py +0 -0
  84. plexflow/core/metadata/providers/plex/datatypes.py +693 -0
  85. plexflow/core/metadata/providers/plex/plex.py +167 -0
  86. plexflow/core/metadata/providers/tmdb/__init__.py +0 -0
  87. plexflow/core/metadata/providers/tmdb/datatypes.py +460 -0
  88. plexflow/core/metadata/providers/tmdb/tmdb.py +85 -0
  89. plexflow/core/metadata/providers/tvdb/__init__.py +0 -0
  90. plexflow/core/metadata/providers/tvdb/datatypes.py +257 -0
  91. plexflow/core/metadata/providers/tvdb/tv_datatypes.py +554 -0
  92. plexflow/core/metadata/providers/tvdb/tvdb.py +65 -0
  93. plexflow/core/metadata/providers/universal/__init__.py +0 -0
  94. plexflow/core/metadata/providers/universal/movie.py +130 -0
  95. plexflow/core/metadata/providers/universal/old.py +192 -0
  96. plexflow/core/metadata/providers/universal/show.py +107 -0
  97. plexflow/core/plex/__init__.py +0 -0
  98. plexflow/core/plex/api/context/authorized.py +15 -0
  99. plexflow/core/plex/api/context/discover.py +14 -0
  100. plexflow/core/plex/api/context/library.py +14 -0
  101. plexflow/core/plex/discover/__init__.py +0 -0
  102. plexflow/core/plex/discover/activity.py +448 -0
  103. plexflow/core/plex/discover/comment.py +89 -0
  104. plexflow/core/plex/discover/feed.py +11 -0
  105. plexflow/core/plex/hooks/__init__.py +0 -0
  106. plexflow/core/plex/hooks/plex_authorized.py +60 -0
  107. plexflow/core/plex/hooks/plexflow_database.py +6 -0
  108. plexflow/core/plex/library/__init__.py +0 -0
  109. plexflow/core/plex/library/library.py +103 -0
  110. plexflow/core/plex/token/__init__.py +0 -0
  111. plexflow/core/plex/token/auto_token.py +91 -0
  112. plexflow/core/plex/utils/__init__.py +0 -0
  113. plexflow/core/plex/utils/paginated.py +39 -0
  114. plexflow/core/plex/watchlist/__init__.py +0 -0
  115. plexflow/core/plex/watchlist/datatypes.py +124 -0
  116. plexflow/core/plex/watchlist/watchlist.py +23 -0
  117. plexflow/core/storage/__init__.py +0 -0
  118. plexflow/core/storage/object/__init__.py +0 -0
  119. plexflow/core/storage/object/plexflow_storage.py +143 -0
  120. plexflow/core/storage/object/redis_storage.py +169 -0
  121. plexflow/core/subtitles/__init__.py +0 -0
  122. plexflow/core/subtitles/providers/__init__.py +0 -0
  123. plexflow/core/subtitles/providers/auto_subtitles.py +48 -0
  124. plexflow/core/subtitles/providers/oss/__init__.py +0 -0
  125. plexflow/core/subtitles/providers/oss/datatypes.py +104 -0
  126. plexflow/core/subtitles/providers/oss/download.py +48 -0
  127. plexflow/core/subtitles/providers/oss/old.py +144 -0
  128. plexflow/core/subtitles/providers/oss/oss.py +400 -0
  129. plexflow/core/subtitles/providers/oss/oss_subtitle.py +32 -0
  130. plexflow/core/subtitles/providers/oss/search.py +52 -0
  131. plexflow/core/subtitles/providers/oss/unlimited_oss.py +231 -0
  132. plexflow/core/subtitles/providers/oss/utils/__init__.py +0 -0
  133. plexflow/core/subtitles/providers/oss/utils/config.py +63 -0
  134. plexflow/core/subtitles/providers/oss/utils/download_client.py +22 -0
  135. plexflow/core/subtitles/providers/oss/utils/exceptions.py +35 -0
  136. plexflow/core/subtitles/providers/oss/utils/file_utils.py +83 -0
  137. plexflow/core/subtitles/providers/oss/utils/languages.py +78 -0
  138. plexflow/core/subtitles/providers/oss/utils/response_base.py +221 -0
  139. plexflow/core/subtitles/providers/oss/utils/responses.py +176 -0
  140. plexflow/core/subtitles/providers/oss/utils/srt.py +561 -0
  141. plexflow/core/subtitles/results/__init__.py +0 -0
  142. plexflow/core/subtitles/results/subtitle.py +170 -0
  143. plexflow/core/torrents/__init__.py +0 -0
  144. plexflow/core/torrents/analyzers/analyzed_torrent.py +143 -0
  145. plexflow/core/torrents/analyzers/analyzer.py +45 -0
  146. plexflow/core/torrents/analyzers/torrentquest/analyzer.py +47 -0
  147. plexflow/core/torrents/auto/auto_providers/auto/__init__.py +0 -0
  148. plexflow/core/torrents/auto/auto_providers/auto/torrent.py +64 -0
  149. plexflow/core/torrents/auto/auto_providers/tpb/torrent.py +62 -0
  150. plexflow/core/torrents/auto/auto_torrents.py +29 -0
  151. plexflow/core/torrents/providers/__init__.py +0 -0
  152. plexflow/core/torrents/providers/ext/__init__.py +0 -0
  153. plexflow/core/torrents/providers/ext/ext.py +18 -0
  154. plexflow/core/torrents/providers/ext/utils.py +64 -0
  155. plexflow/core/torrents/providers/extratorrent/__init__.py +0 -0
  156. plexflow/core/torrents/providers/extratorrent/extratorrent.py +21 -0
  157. plexflow/core/torrents/providers/extratorrent/utils.py +66 -0
  158. plexflow/core/torrents/providers/eztv/__init__.py +0 -0
  159. plexflow/core/torrents/providers/eztv/eztv.py +47 -0
  160. plexflow/core/torrents/providers/eztv/utils.py +83 -0
  161. plexflow/core/torrents/providers/rarbg2/__init__.py +0 -0
  162. plexflow/core/torrents/providers/rarbg2/rarbg2.py +19 -0
  163. plexflow/core/torrents/providers/rarbg2/utils.py +76 -0
  164. plexflow/core/torrents/providers/snowfl/__init__.py +0 -0
  165. plexflow/core/torrents/providers/snowfl/snowfl.py +36 -0
  166. plexflow/core/torrents/providers/snowfl/utils.py +59 -0
  167. plexflow/core/torrents/providers/tgx/__init__.py +0 -0
  168. plexflow/core/torrents/providers/tgx/context.py +50 -0
  169. plexflow/core/torrents/providers/tgx/dump.py +40 -0
  170. plexflow/core/torrents/providers/tgx/tgx.py +22 -0
  171. plexflow/core/torrents/providers/tgx/utils.py +61 -0
  172. plexflow/core/torrents/providers/therarbg/__init__.py +0 -0
  173. plexflow/core/torrents/providers/therarbg/therarbg.py +17 -0
  174. plexflow/core/torrents/providers/therarbg/utils.py +61 -0
  175. plexflow/core/torrents/providers/torrentquest/__init__.py +0 -0
  176. plexflow/core/torrents/providers/torrentquest/torrentquest.py +20 -0
  177. plexflow/core/torrents/providers/torrentquest/utils.py +70 -0
  178. plexflow/core/torrents/providers/tpb/__init__.py +0 -0
  179. plexflow/core/torrents/providers/tpb/tpb.py +17 -0
  180. plexflow/core/torrents/providers/tpb/utils.py +139 -0
  181. plexflow/core/torrents/providers/yts/__init__.py +0 -0
  182. plexflow/core/torrents/providers/yts/utils.py +57 -0
  183. plexflow/core/torrents/providers/yts/yts.py +31 -0
  184. plexflow/core/torrents/results/__init__.py +0 -0
  185. plexflow/core/torrents/results/torrent.py +165 -0
  186. plexflow/core/torrents/results/universal.py +220 -0
  187. plexflow/core/torrents/results/utils.py +15 -0
  188. plexflow/events/__init__.py +0 -0
  189. plexflow/events/download/__init__.py +0 -0
  190. plexflow/events/download/torrent_events.py +96 -0
  191. plexflow/events/publish/__init__.py +0 -0
  192. plexflow/events/publish/publish.py +34 -0
  193. plexflow/logging/__init__.py +0 -0
  194. plexflow/logging/log_setup.py +8 -0
  195. plexflow/spiders/quiet_logger.py +9 -0
  196. plexflow/spiders/tgx/pipelines/dump_json_pipeline.py +30 -0
  197. plexflow/spiders/tgx/pipelines/meta_pipeline.py +13 -0
  198. plexflow/spiders/tgx/pipelines/publish_pipeline.py +14 -0
  199. plexflow/spiders/tgx/pipelines/torrent_info_pipeline.py +12 -0
  200. plexflow/spiders/tgx/pipelines/validation_pipeline.py +17 -0
  201. plexflow/spiders/tgx/settings.py +36 -0
  202. plexflow/spiders/tgx/spider.py +72 -0
  203. plexflow/utils/__init__.py +0 -0
  204. plexflow/utils/antibot/human_like_requests.py +122 -0
  205. plexflow/utils/api/__init__.py +0 -0
  206. plexflow/utils/api/context/http.py +62 -0
  207. plexflow/utils/api/rest/__init__.py +0 -0
  208. plexflow/utils/api/rest/antibot_restful.py +68 -0
  209. plexflow/utils/api/rest/restful.py +49 -0
  210. plexflow/utils/captcha/__init__.py +0 -0
  211. plexflow/utils/captcha/bypass/__init__.py +0 -0
  212. plexflow/utils/captcha/bypass/decode_audio.py +34 -0
  213. plexflow/utils/download/__init__.py +0 -0
  214. plexflow/utils/download/gz.py +26 -0
  215. plexflow/utils/filesystem/__init__.py +0 -0
  216. plexflow/utils/filesystem/search.py +129 -0
  217. plexflow/utils/gmail/__init__.py +0 -0
  218. plexflow/utils/gmail/mails.py +116 -0
  219. plexflow/utils/hooks/__init__.py +0 -0
  220. plexflow/utils/hooks/http.py +84 -0
  221. plexflow/utils/hooks/postgresql.py +93 -0
  222. plexflow/utils/hooks/redis.py +112 -0
  223. plexflow/utils/image/storage.py +36 -0
  224. plexflow/utils/imdb/__init__.py +0 -0
  225. plexflow/utils/imdb/imdb_codes.py +107 -0
  226. plexflow/utils/pubsub/consume.py +82 -0
  227. plexflow/utils/pubsub/produce.py +25 -0
  228. plexflow/utils/retry/__init__.py +0 -0
  229. plexflow/utils/retry/utils.py +38 -0
  230. plexflow/utils/strings/__init__.py +0 -0
  231. plexflow/utils/strings/filesize.py +55 -0
  232. plexflow/utils/strings/language.py +14 -0
  233. plexflow/utils/subtitle/search.py +76 -0
  234. plexflow/utils/tasks/decorators.py +78 -0
  235. plexflow/utils/tasks/k8s/task.py +70 -0
  236. plexflow/utils/thread_safe/safe_list.py +54 -0
  237. plexflow/utils/thread_safe/safe_set.py +69 -0
  238. plexflow/utils/torrent/__init__.py +0 -0
  239. plexflow/utils/torrent/analyze.py +118 -0
  240. plexflow/utils/torrent/extract/common.py +37 -0
  241. plexflow/utils/torrent/extract/ext.py +2391 -0
  242. plexflow/utils/torrent/extract/extratorrent.py +56 -0
  243. plexflow/utils/torrent/extract/kat.py +1581 -0
  244. plexflow/utils/torrent/extract/tgx.py +96 -0
  245. plexflow/utils/torrent/extract/therarbg.py +170 -0
  246. plexflow/utils/torrent/extract/torrentquest.py +171 -0
  247. plexflow/utils/torrent/files.py +36 -0
  248. plexflow/utils/torrent/hash.py +90 -0
  249. plexflow/utils/transcribe/__init__.py +0 -0
  250. plexflow/utils/transcribe/speech2text.py +40 -0
  251. plexflow/utils/video/__init__.py +0 -0
  252. plexflow/utils/video/subtitle.py +73 -0
  253. plexflow-0.0.64.dist-info/METADATA +71 -0
  254. plexflow-0.0.64.dist-info/RECORD +256 -0
  255. plexflow-0.0.64.dist-info/WHEEL +4 -0
  256. plexflow-0.0.64.dist-info/entry_points.txt +24 -0
@@ -0,0 +1,71 @@
1
+ Metadata-Version: 2.1
2
+ Name: plexflow
3
+ Version: 0.0.64
4
+ Summary: A short description of the package.
5
+ Home-page: https://www.example.com
6
+ License: MIT
7
+ Keywords: keyword1,keyword2,keyword3
8
+ Author: Your Name
9
+ Author-email: you@example.com
10
+ Requires-Python: ==3.12.4
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Requires-Dist: apache-airflow (>=2.9.3,<3.0.0)
17
+ Requires-Dist: apache-airflow-providers-cncf-kubernetes (>=8.3.3,<9.0.0)
18
+ Requires-Dist: apache-airflow-providers-postgres (>=5.10.2,<6.0.0)
19
+ Requires-Dist: apache-airflow-providers-redis (>=3.7.0,<4.0.0)
20
+ Requires-Dist: arrow (>=1.3.0,<2.0.0)
21
+ Requires-Dist: avro (>=1.11.3,<2.0.0)
22
+ Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
23
+ Requires-Dist: bitmath (>=1.3.3.1,<2.0.0.0)
24
+ Requires-Dist: brotli (>=1.1.0,<2.0.0)
25
+ Requires-Dist: cloudinary (>=1.41.0,<2.0.0)
26
+ Requires-Dist: cloudscraper (>=1.2.71,<2.0.0)
27
+ Requires-Dist: cohere (>=5.5.0,<6.0.0)
28
+ Requires-Dist: confluent-kafka[avro] (>=2.4.0,<3.0.0)
29
+ Requires-Dist: dataclasses-json (>=0.6.4,<0.7.0)
30
+ Requires-Dist: dateparser (>=1.2.0,<2.0.0)
31
+ Requires-Dist: fake-useragent (>=1.4.0,<2.0.0)
32
+ Requires-Dist: google-api-python-client (>=2.129.0,<3.0.0)
33
+ Requires-Dist: google-auth-oauthlib (>=1.2.0,<2.0.0)
34
+ Requires-Dist: google-cloud-pubsub (>=2.21.1,<3.0.0)
35
+ Requires-Dist: groq (>=0.9.0,<0.10.0)
36
+ Requires-Dist: html5lib (>=1.1,<2.0)
37
+ Requires-Dist: humanfriendly (>=10.0,<11.0)
38
+ Requires-Dist: iso639-lang (>=2.2.3,<3.0.0)
39
+ Requires-Dist: json-repair (>=0.19.1,<0.20.0)
40
+ Requires-Dist: kafka (>=1.3.5,<2.0.0)
41
+ Requires-Dist: langchain-google-genai (>=1.0.8,<2.0.0)
42
+ Requires-Dist: langchain-groq (>=0.1.9,<0.2.0)
43
+ Requires-Dist: langcodes (>=3.4.0,<4.0.0)
44
+ Requires-Dist: lxml (>=5.1.0,<6.0.0)
45
+ Requires-Dist: numpy (>=2.0.1,<3.0.0)
46
+ Requires-Dist: parse-torrent-title (>=2.8.1,<3.0.0)
47
+ Requires-Dist: playwright (>=1.41.2,<2.0.0)
48
+ Requires-Dist: playwright-stealth (>=1.0.6,<2.0.0)
49
+ Requires-Dist: plexapi (==4.15.9)
50
+ Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0)
51
+ Requires-Dist: pyautogui (>=0.9.54,<0.10.0)
52
+ Requires-Dist: pydantic (>=2.6.1,<3.0.0)
53
+ Requires-Dist: pyngrok (>=7.1.6,<8.0.0)
54
+ Requires-Dist: pysrt (>=1.1.2,<2.0.0)
55
+ Requires-Dist: python-ffmpeg (>=2.0.10,<3.0.0)
56
+ Requires-Dist: python-ulid (>=2.7.0,<3.0.0)
57
+ Requires-Dist: ratelimit (>=2.2.1,<3.0.0)
58
+ Requires-Dist: redis (>=4.1.3,<5.0.0)
59
+ Requires-Dist: requests (>=2.25.1,<3.0.0)
60
+ Requires-Dist: retrying (>=1.3.4,<2.0.0)
61
+ Requires-Dist: scrapy (>=2.11.2,<3.0.0)
62
+ Requires-Dist: seleniumbase (>=4.28.4,<5.0.0)
63
+ Requires-Dist: tmdbsimple (>=2.9.1,<3.0.0)
64
+ Requires-Dist: tpblite (>=0.8.0,<0.9.0)
65
+ Requires-Dist: tvdb-v4-official (>=1.1.0,<2.0.0)
66
+ Requires-Dist: tvdbsimple (>=1.0.6,<2.0.0)
67
+ Requires-Dist: uvicorn (>=0.29.0,<0.30.0)
68
+ Requires-Dist: webdriver-manager (>=4.0.2,<5.0.0)
69
+ Requires-Dist: wget (>=3.2,<4.0)
70
+ Project-URL: Documentation, https://www.example.com/docs
71
+ Project-URL: Repository, https://github.com/username/my-package
@@ -0,0 +1,256 @@
1
+ plexflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ plexflow/__main__.py,sha256=qW3ug8lI8NRAekcgfX13svs8kZL2B4Iou66wSuB4LmA,494
3
+ plexflow/core/.DS_Store,sha256=Be9vsDyQBOak6RDUECY_7-dRR1twWvD1hq5DFWSaA1U,6148
4
+ plexflow/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ plexflow/core/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ plexflow/core/context/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ plexflow/core/context/metadata/context.py,sha256=MoKWnb03_9pnjYacRrfzYN1eVNFbLjOsPbYkfUTQn1w,1105
8
+ plexflow/core/context/metadata/tmdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ plexflow/core/context/metadata/tmdb/context.py,sha256=zlI_Zs_1bAdR60xtl4j2_UBhIery1VcsQz2a53l5g20,1521
10
+ plexflow/core/context/partial_context.py,sha256=Ptad0ZLRgE0FPIJlYzPIGCtrOlxU1mJzScaXzENlgY8,2010
11
+ plexflow/core/context/partials/__init__.py,sha256=a7uc-rAOGXE8a5z0g0O2lITsDGUISMeg7FY3QhNycUU,482
12
+ plexflow/core/context/partials/cache.py,sha256=1QQ6yP69wqJiacuc2idhHsXpyUUCqavqgLk25wQB_tI,508
13
+ plexflow/core/context/partials/context.py,sha256=pFzpAFxwCJdqPuhXJqhs6j4Xyvf0GQtzPRMmL4fcjEA,314
14
+ plexflow/core/context/partials/ids.py,sha256=QoQ6FbX1OIWrE-iuz-G6kSzBlTt1_I1jyfl2JgKge2o,913
15
+ plexflow/core/context/partials/movie.py,sha256=VXQ2SspFgGSRgDefg4VlHrH2fns3KRuKlU72ps6527o,3861
16
+ plexflow/core/context/partials/tgx_batch.py,sha256=TduB09oBOQ8CtmPYsHIeNe7AI-ypKw21zQAX-7qktEs,859
17
+ plexflow/core/context/partials/tgx_context.py,sha256=_FuhOvKsFqi_uynHxgC9_QIR2CfYmz-uJCRFtGFJmXI,1641
18
+ plexflow/core/context/partials/torrents.py,sha256=U6tjdsH0qIPwe9b7XZ5ChNIos68WEKn9VgCQe0A8MQ0,772
19
+ plexflow/core/context/partials/watchlist.py,sha256=XL4H3AXHhyuhuImm3OBfrOmlc9rMvVhBJJGumQijM-c,1108
20
+ plexflow/core/context/plexflow_context.py,sha256=_Le01owaf_0hW6BwMCvMKrKX0IRHyWGWGYTzxCWmdSE,904
21
+ plexflow/core/context/plexflow_property.py,sha256=9eLjyHlfKKUhFo_zRwUIq_QaAGE6An4B8_HOxVJbeUo,1169
22
+ plexflow/core/context/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ plexflow/core/context/root/context.py,sha256=ySaJ9UNOUxNsY2v3ioDP8tUz_c81DIZHXF7IE4ZNxfI,800
24
+ plexflow/core/context/select/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ plexflow/core/context/select/context.py,sha256=xzOUeQXewHm-WioXQ71cQmrFv78KCE7R5szDj-a9yfs,1492
26
+ plexflow/core/context/torrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ plexflow/core/context/torrent/context.py,sha256=PADpyFn3MOZHAqi8pPnMH7JIq6A5Sw_llXH7-oL4MtA,1435
28
+ plexflow/core/context/torrent/tpb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ plexflow/core/context/torrent/tpb/context.py,sha256=hbUDhObox-j8oQhAiLcrv2QfkTMF2ZDNH4R8bY-UEuA,1527
30
+ plexflow/core/context/torrent/yts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ plexflow/core/context/torrent/yts/context.py,sha256=katiCmdaFv7qDQINXSwfbUo-tWi6jqYyYDOzBB_Tq3E,1518
32
+ plexflow/core/context/watchlist/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ plexflow/core/context/watchlist/context.py,sha256=_JKr1tddYLD6gemKelj_LB5t-pev_6SUIaQnl1tPX8c,1548
34
+ plexflow/core/downloads/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ plexflow/core/downloads/candidates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ plexflow/core/downloads/candidates/download_candidate.py,sha256=KlW4GhAbp2hhDuoAphuFj3uweJE4LjwRvUNe-R7h-es,5819
37
+ plexflow/core/downloads/candidates/filtered.py,sha256=HgUY0S3aWAeHASHTjND9hyjCtGNLhUzLOL90G2CDxKg,1842
38
+ plexflow/core/downloads/candidates/utils.py,sha256=ahI6bvk7CHT_O0BEXsd7FtC180Swlt9Phj6_op1mhYA,1777
39
+ plexflow/core/env/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ plexflow/core/env/env.py,sha256=8cK49WiKD_H3B9K0QiMu7pkXTld40ojRB3sK7noQM44,953
41
+ plexflow/core/genai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ plexflow/core/genai/bot.py,sha256=SXeBm4X2J1GPWV2ACPqDLdzP0Mh3o6A8f3SaBqW1Rp8,302
43
+ plexflow/core/genai/plexa.py,sha256=CU8_9cIHVFIZ_gawssA4JEGseNfbkj4F3krWPhtmmzQ,1744
44
+ plexflow/core/genai/torrent/imdb_verify.py,sha256=Jli8trRevUEz14vlRXqLvaadfPfJtlDgcyjeLyhydTg,2197
45
+ plexflow/core/genai/torrent/movie.py,sha256=0iS8exlozGRH8ds1wPwOGfovuFZEjeETE7Y8YLH6x_4,690
46
+ plexflow/core/genai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ plexflow/core/genai/utils/loader.py,sha256=DUJZbnOrSmnS1f0-T2iu2V0VtFWp-4U6Nnj5fEgR1Jg,114
48
+ plexflow/core/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ plexflow/core/metadata/auto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ plexflow/core/metadata/auto/auto_meta.py,sha256=yLLaE7YYNKjlqlR8JDhEcPVJU0uH2lujvURNU-XwoP0,1887
51
+ plexflow/core/metadata/auto/auto_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ plexflow/core/metadata/auto/auto_providers/auto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ plexflow/core/metadata/auto/auto_providers/auto/episode.py,sha256=79QxeLpzaXp08wCS3VB3OboS0LoIsOUDfQ8uspfpBm4,1004
54
+ plexflow/core/metadata/auto/auto_providers/auto/item.py,sha256=zZV0ArqzdLyde28eI93WjSS4PQoz-9YZ0ep80BYEPA8,1047
55
+ plexflow/core/metadata/auto/auto_providers/auto/movie.py,sha256=ddiaLxlSsAuBHs14RUxW2xBDsfkc_LeEtu1GlP0uPLE,488
56
+ plexflow/core/metadata/auto/auto_providers/auto/season.py,sha256=Y-SgPnIkL921g8ksMGwjT9NB8W1BVS-9SuHX4ovwMjc,978
57
+ plexflow/core/metadata/auto/auto_providers/auto/show.py,sha256=4oid5CfLJDl5YRg5Lu72SnCr2EOJS4f_S75hqRqmvPE,770
58
+ plexflow/core/metadata/auto/auto_providers/imdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ plexflow/core/metadata/auto/auto_providers/imdb/movie.py,sha256=skXL5uVZNKo_5d93oY6E6K3KheC5NPR3TSpAqTflrLY,920
60
+ plexflow/core/metadata/auto/auto_providers/imdb/show.py,sha256=JbLpPgp3nu4WMACol9Ffgj4zqmuIXu7ydw5nHT2ZNV0,1162
61
+ plexflow/core/metadata/auto/auto_providers/moviemeter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ plexflow/core/metadata/auto/auto_providers/moviemeter/movie.py,sha256=w3CkPQoF-8N0UX40ILp9BvPr6YVOF3eFlCsZ3qa1Pv4,1077
63
+ plexflow/core/metadata/auto/auto_providers/plex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ plexflow/core/metadata/auto/auto_providers/plex/movie.py,sha256=SnIUD94wsSBpsEk5ER0xLtzn5WGgdlcKyDo9qjFUUEs,1199
65
+ plexflow/core/metadata/auto/auto_providers/tmdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ plexflow/core/metadata/auto/auto_providers/tmdb/episode.py,sha256=fLbpUwCONvOy7OIOSu7lIdQU1bRw9thTiMJtbN8v3j4,1038
67
+ plexflow/core/metadata/auto/auto_providers/tmdb/movie.py,sha256=I0CEIA-ozd4pvs2opY6PT86-ic5_Cx3xQ-6Z7-G0L28,1078
68
+ plexflow/core/metadata/auto/auto_providers/tmdb/season.py,sha256=Jxhe5JfbLoDoXs5DpDmDmofmHgakb80LEoQKM13qrQg,997
69
+ plexflow/core/metadata/auto/auto_providers/tmdb/show.py,sha256=xWDd9vGgA68KnSp9W_KzXrWl3SOS7nP8UMhWcjxAIPA,1393
70
+ plexflow/core/metadata/auto/auto_providers/tmdb.py,sha256=UGvjrqprqQTLr8ihQ2woQdNSqqSwbjA5tDUg6GS21c8,2616
71
+ plexflow/core/metadata/auto/auto_providers/tvdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
+ plexflow/core/metadata/auto/auto_providers/tvdb/episode.py,sha256=Yms17-glr35iCHZ3eUe9AJZVidiRS-14A55stKnZhY4,906
73
+ plexflow/core/metadata/auto/auto_providers/tvdb/movie.py,sha256=vdt-Yz9TbgqzESxqiVeX8WHhhPpyAnquHhxHniJfQM0,996
74
+ plexflow/core/metadata/auto/auto_providers/tvdb/season.py,sha256=AhNCcs9UTr2bwJUNgabKlGuakhf0ZS3xx9QE0JSkipE,1147
75
+ plexflow/core/metadata/auto/auto_providers/tvdb/show.py,sha256=OURtMHLSv15g0owHFe-RKiRokF35nefvMWAUTqX0Zzc,1222
76
+ plexflow/core/metadata/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ plexflow/core/metadata/providers/imdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ plexflow/core/metadata/providers/imdb/datatypes.py,sha256=v8mjxGK3U05eEfZLZ3dXYx_irnHw5aF8Rn98JOskPrg,1552
79
+ plexflow/core/metadata/providers/imdb/imdb.py,sha256=r9RM0ru48V8Q8bu3blqhzO4yaiclOW2VQd5Sv1iRX6o,4642
80
+ plexflow/core/metadata/providers/moviemeter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ plexflow/core/metadata/providers/moviemeter/datatypes.py,sha256=cer8J4uQPutWGHmQSIKnXBOrp16lfFdGhxRsZ7JU3lc,4551
82
+ plexflow/core/metadata/providers/moviemeter/moviemeter.py,sha256=yDFl4K36p9vwsFHJOnTf70wvlrqnNp09ipUcoRqcQdE,1628
83
+ plexflow/core/metadata/providers/plex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
+ plexflow/core/metadata/providers/plex/datatypes.py,sha256=Z_SjgkvNYlbWgvmJpTRI0wlbrfikWn_bH47nO7fyRHg,31766
85
+ plexflow/core/metadata/providers/plex/plex.py,sha256=KrOjSLzeZVIGDnLDC7dw87Yizq5h3Fbf9MtPv_tcET8,5918
86
+ plexflow/core/metadata/providers/tmdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ plexflow/core/metadata/providers/tmdb/datatypes.py,sha256=750p_2oQ55p5wjj2DNPKFrUO-Dze2XKQdL1lc9vd5C0,18345
88
+ plexflow/core/metadata/providers/tmdb/tmdb.py,sha256=kz2WPJwj5Hj4vTeCLNk8GqEcW67jD7CD_w7smnqBHLw,3596
89
+ plexflow/core/metadata/providers/tvdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ plexflow/core/metadata/providers/tvdb/datatypes.py,sha256=lW5YfcBMuCIhkjrmqxvRE8qM4VEpI4duLen1J_pXakg,8327
91
+ plexflow/core/metadata/providers/tvdb/tv_datatypes.py,sha256=EWGetfrA3iu3eC_9n4VIATbkp69TrFmlT7yWM4fQ5sQ,25698
92
+ plexflow/core/metadata/providers/tvdb/tvdb.py,sha256=LnPHSjk-f45NMM4JIh5we0TvyzHYaUHzYi14XZYoquI,2105
93
+ plexflow/core/metadata/providers/universal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
+ plexflow/core/metadata/providers/universal/movie.py,sha256=YSCPoUH5JMFSvErIjpNWL6R2EXgSoCBlLj_J591UxOY,3657
95
+ plexflow/core/metadata/providers/universal/old.py,sha256=_o_BNDXJnSq5S6qTMsNNBy38dvB795LStijMlkGOic0,7458
96
+ plexflow/core/metadata/providers/universal/show.py,sha256=wbOMO08hrJyX5WjY5hn7ZFU-nXmjZSIWXwjMgHHhCE4,3600
97
+ plexflow/core/plex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ plexflow/core/plex/api/context/authorized.py,sha256=o7SP1yOqiPjTNbAaeyDOHk7KRAqkWtRyCttgm4jyjK4,704
99
+ plexflow/core/plex/api/context/discover.py,sha256=WnglqoyysOEN6YmvT_O-nB1CbghJsL8flcruZ0Ovlak,714
100
+ plexflow/core/plex/api/context/library.py,sha256=b9m3K_KEIn_o6akwml0MQjgh-L7p8SZDWTKMjG1mFY4,742
101
+ plexflow/core/plex/discover/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
+ plexflow/core/plex/discover/activity.py,sha256=xn4EtbYahAT4o7WgGFKI_IU-VQT0B5pXeImV5EuJxi4,13897
103
+ plexflow/core/plex/discover/comment.py,sha256=V9LHj_iPdusth1Ht9n0KTSlfouahfQYQh6fI34371xA,2948
104
+ plexflow/core/plex/discover/feed.py,sha256=q26fujxEWkVFjKwJKsBEFnumcFvcdnLmdpEJceL1D-Y,335
105
+ plexflow/core/plex/hooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
+ plexflow/core/plex/hooks/plex_authorized.py,sha256=JQUNSCZssmP31EDJhHa0Y8eho4ib3SCKIIxcHPziu7s,3193
107
+ plexflow/core/plex/hooks/plexflow_database.py,sha256=ftdsrwT8AMogSqqfT_P1db5e69Fya7bnEszsvdCLZIo,316
108
+ plexflow/core/plex/library/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
+ plexflow/core/plex/library/library.py,sha256=-Tauzv2qYQ6k2RzEatHFYMNfkg0CHZaQAmTJs4M3dok,3211
110
+ plexflow/core/plex/token/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
+ plexflow/core/plex/token/auto_token.py,sha256=CcAd6KcnI7ul5TxpdYVw_7T0ab2K3YTi8DcqHtjKt4Q,3615
112
+ plexflow/core/plex/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
+ plexflow/core/plex/utils/paginated.py,sha256=4w-Q2kpkCmsCYnxJazoltvvpLq-c2hzyS4DWsGHkeoM,1171
114
+ plexflow/core/plex/watchlist/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ plexflow/core/plex/watchlist/datatypes.py,sha256=Ukri8nM16-IKxPxia4n45syjtc401nMWSd3hgjdrJSE,5193
116
+ plexflow/core/plex/watchlist/watchlist.py,sha256=3vtkxvjVWmVWLSRxptZoek0eeAX2tU0mQ-IsT6TBwB4,851
117
+ plexflow/core/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
+ plexflow/core/storage/object/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
+ plexflow/core/storage/object/plexflow_storage.py,sha256=28sADPUQcYcVSt0ndu9xGLTuhWN4VejQSnpgQ5CmWW8,5413
120
+ plexflow/core/storage/object/redis_storage.py,sha256=6EDSNEgNjP0KNdTtJXZebeUAiqRV97oAdjtUnU2bDBE,6097
121
+ plexflow/core/subtitles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
+ plexflow/core/subtitles/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
+ plexflow/core/subtitles/providers/auto_subtitles.py,sha256=CWHpQ_-YD_c0v9X2NCbPAUVgpOf6_G7SOkilsqlxXpg,2268
124
+ plexflow/core/subtitles/providers/oss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
+ plexflow/core/subtitles/providers/oss/datatypes.py,sha256=7YvjS8a3riEJ4yqLKzTRv5g6vftcrcoYKGcBoq0MCLo,3620
126
+ plexflow/core/subtitles/providers/oss/download.py,sha256=s4y3jAQnCIzugwYvpcdJg5kRgzUwopvyWItZl8Adimg,2209
127
+ plexflow/core/subtitles/providers/oss/old.py,sha256=IoZ7iIRs3FoxxJgzGrgMGNJpVXqZ3aAaadjKJJ3Lw0o,5566
128
+ plexflow/core/subtitles/providers/oss/oss.py,sha256=DLFgqar4QUB-WWXYcNrWV26DLsjJ7UzXEk54Z9uT7yc,15929
129
+ plexflow/core/subtitles/providers/oss/oss_subtitle.py,sha256=SuFv90Z_KUELHnAm85SpZNsH0tXKJMMgFKODYgjDmzc,879
130
+ plexflow/core/subtitles/providers/oss/search.py,sha256=MaDmrKIC-lZO_THXPaDVgYNQ-ZVkmQdfZzfuujUeV5w,1920
131
+ plexflow/core/subtitles/providers/oss/unlimited_oss.py,sha256=Ra-9uqCiAgEo_wQ-GZRkj_ocIw5mhU_0iR89TY653OU,9672
132
+ plexflow/core/subtitles/providers/oss/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ plexflow/core/subtitles/providers/oss/utils/config.py,sha256=FJaqPYheJ5qxbP7VckM0Wfic7f0sBjKwtOAvhM3HdaU,2071
134
+ plexflow/core/subtitles/providers/oss/utils/download_client.py,sha256=iaJYQON-_7lOBHJtmtLryLKRTst9PhOE6CdGKya1iTk,503
135
+ plexflow/core/subtitles/providers/oss/utils/exceptions.py,sha256=mG105o_CMeXB1WLnpUvuGcShDnRWvfwpE7QFMTTDwwA,921
136
+ plexflow/core/subtitles/providers/oss/utils/file_utils.py,sha256=lfTkLIxj_acXQzW2pF7YVbSqf5x1sxSXldoyIVqG4Po,2528
137
+ plexflow/core/subtitles/providers/oss/utils/languages.py,sha256=wRJz6Pgn0U1bhXQGbseNECzezZUC9lczZcb0m-OkrnE,1723
138
+ plexflow/core/subtitles/providers/oss/utils/response_base.py,sha256=APjsR4OqYrKeHKI3V2k3b5BBQW0JlF9IAQvnZQA57iU,7564
139
+ plexflow/core/subtitles/providers/oss/utils/responses.py,sha256=QRTjZymSn3EWqMjteXy1apRtNDKej614D2YB1_m_v2c,7954
140
+ plexflow/core/subtitles/providers/oss/utils/srt.py,sha256=riEuy9_1m4kZEu-Ey8bgvQUfr5ce0_Nu95GFe6Qh_u8,21041
141
+ plexflow/core/subtitles/results/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
+ plexflow/core/subtitles/results/subtitle.py,sha256=1_xeg_l93b-gWRJEKrOSA8k1OlNOfJgotFWWsfgiUvM,3852
143
+ plexflow/core/torrents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
+ plexflow/core/torrents/analyzers/analyzed_torrent.py,sha256=gsAr5RjYVXozWUaP3zShjXWFuB5a7CNotb6rvTRnAPg,4164
145
+ plexflow/core/torrents/analyzers/analyzer.py,sha256=-KqZpwrrQpu5Aqt94plO5fUr1RQOOdCzKb1dT5P1SoE,1358
146
+ plexflow/core/torrents/analyzers/torrentquest/analyzer.py,sha256=f2X3CcYBA9xYZ6kRLkGQ5YK5feXjsw229z5nLWUHMEI,1907
147
+ plexflow/core/torrents/auto/auto_providers/auto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
+ plexflow/core/torrents/auto/auto_providers/auto/torrent.py,sha256=yenzXr-VqmpoEONJdMOKgtstdOSzCIAFphTTm8ZI7B4,1594
149
+ plexflow/core/torrents/auto/auto_providers/tpb/torrent.py,sha256=8X2i75s3sI9rGcTQ94_0kNkO-7docR9P_I0BRAv7PUQ,1612
150
+ plexflow/core/torrents/auto/auto_torrents.py,sha256=FvLXSoMvytLjPRwXi1P9FnEerqtniVTb-VJODZ4UdnI,1411
151
+ plexflow/core/torrents/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
+ plexflow/core/torrents/providers/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
+ plexflow/core/torrents/providers/ext/ext.py,sha256=Q7K8g2Dwq9-uWXukfSpixcbw55dUyeyBJboMRRV9BYs,783
154
+ plexflow/core/torrents/providers/ext/utils.py,sha256=5luyin-_yCSxMtlx1W0DAKZaCAyKnBdvfpRmKojvTI4,1445
155
+ plexflow/core/torrents/providers/extratorrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
+ plexflow/core/torrents/providers/extratorrent/extratorrent.py,sha256=eKfomcjs41jxQfttX7Qwd6b-wmpZ3S4rCcsU_sewtDo,895
157
+ plexflow/core/torrents/providers/extratorrent/utils.py,sha256=9D0-0Lr6R6gdQb2rsGcSYOqrvt8vlcoLN0GedjumSnk,1608
158
+ plexflow/core/torrents/providers/eztv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
+ plexflow/core/torrents/providers/eztv/eztv.py,sha256=VG_l6UjDztkl-pokmkLuqKsY2Gm82dQZn5vlecDh-6g,1764
160
+ plexflow/core/torrents/providers/eztv/utils.py,sha256=JaXyqGA0Zc0BhuoC75JkKy4PmN3AO4E-817_BkSY6J4,2850
161
+ plexflow/core/torrents/providers/rarbg2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
+ plexflow/core/torrents/providers/rarbg2/rarbg2.py,sha256=SZ9EPO78XQFa6AoajJWy93M6BswWGm9vFBQJh-E_cwA,717
163
+ plexflow/core/torrents/providers/rarbg2/utils.py,sha256=7M96ilgkfMssOhSvB99SgM9Dfgf1sqXEYtzw1I7SCw4,1854
164
+ plexflow/core/torrents/providers/snowfl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
+ plexflow/core/torrents/providers/snowfl/snowfl.py,sha256=PNizfDcJkbeNpmXuw3I1SlTsgRFj9z9zZDxwblDYFAg,1200
166
+ plexflow/core/torrents/providers/snowfl/utils.py,sha256=qMd2zsqShfZ1MOYjABJuYhY_fX2HxrHBZbkmr6tLlbg,1530
167
+ plexflow/core/torrents/providers/tgx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
+ plexflow/core/torrents/providers/tgx/context.py,sha256=qXllx-laicYXqE2tDwcJf8W-lb8CsVswDAXCnBEsns4,1470
169
+ plexflow/core/torrents/providers/tgx/dump.py,sha256=F9VdUyTT4BnQ7V-ESTAg7rWD4iPoUVg1ufzBWw7dIFw,1356
170
+ plexflow/core/torrents/providers/tgx/tgx.py,sha256=nt5dIcCrDsF91zds1KOwbCDqyYseuYismyDjhtrMT3k,881
171
+ plexflow/core/torrents/providers/tgx/utils.py,sha256=gUSgKDRcQvCZie2wo6ADYecs_ltHxqhMTAY3mlMmDGE,1813
172
+ plexflow/core/torrents/providers/therarbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
+ plexflow/core/torrents/providers/therarbg/therarbg.py,sha256=dQ5Y-1XIlgEpvYaxZ34i19LXb-DFbtVNPkoEuBj3jAY,743
174
+ plexflow/core/torrents/providers/therarbg/utils.py,sha256=sEP4dcJNuE5pxu2Gf8rrnxW06dxz4ZOGeJMe1mY1PBA,1465
175
+ plexflow/core/torrents/providers/torrentquest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
+ plexflow/core/torrents/providers/torrentquest/torrentquest.py,sha256=VxKDfVo9ArkeVuvyWnMR0kCe7REA4SgvLjsZvVN7dNg,925
177
+ plexflow/core/torrents/providers/torrentquest/utils.py,sha256=RZoJFZpyI-vRDRX-T7tnbeGyb5jdk4UdHyhEgLuwRLM,1664
178
+ plexflow/core/torrents/providers/tpb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
+ plexflow/core/torrents/providers/tpb/tpb.py,sha256=H_ygdyFFDPOWzvKoV01DSY9cBqRE8e3-wO0tmbuJKqo,534
180
+ plexflow/core/torrents/providers/tpb/utils.py,sha256=xZEU9tbRnG8nR2lspPenIA0UqmqxMIH_uv1sMtW79qM,3621
181
+ plexflow/core/torrents/providers/yts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
+ plexflow/core/torrents/providers/yts/utils.py,sha256=SYV7yohab-gF5Nj67fO8Lkus84-h0OBD3BkIY6U6A1I,1699
183
+ plexflow/core/torrents/providers/yts/yts.py,sha256=5QgZZs0AKWEI6bjwVHs2pyLtSf2cYOw6cB5FTUqyRU8,1048
184
+ plexflow/core/torrents/results/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
+ plexflow/core/torrents/results/torrent.py,sha256=xsFFOG8Wh5YslQ4d5lhrhi2I5LHGBTCdC30CU06GAKs,4770
186
+ plexflow/core/torrents/results/universal.py,sha256=eU0GyxewT9XkvFbtUIaNNB-Y_aXCl7XPvb5z8VVyE1o,6614
187
+ plexflow/core/torrents/results/utils.py,sha256=abiiO_QQYDpA5aMyO8WFPxnGu5sL5xfACezE5bwrnJU,691
188
+ plexflow/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
+ plexflow/events/download/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
+ plexflow/events/download/torrent_events.py,sha256=mMJ96u-OGrVmbJWJ4QYvUYCXUB2Ip_iocaCwsmJozD0,3464
191
+ plexflow/events/publish/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
192
+ plexflow/events/publish/publish.py,sha256=57UnWzcQmQeyVAT9HJPChA2glr9B4HXz_jkjpfDDDag,1330
193
+ plexflow/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
+ plexflow/logging/log_setup.py,sha256=br5MOm8tnrJGLb3ADJ0u8aj_kbpNRahfknhvxbFIJZA,193
195
+ plexflow/spiders/quiet_logger.py,sha256=adLBggbjrYo4VcJE61ho7TUisSRxeI5VeNCZnSzdvsE,282
196
+ plexflow/spiders/tgx/pipelines/dump_json_pipeline.py,sha256=gs_kl27B0fglnejJCEXYm83trA6m53rtHMO3Ytr9mzA,856
197
+ plexflow/spiders/tgx/pipelines/meta_pipeline.py,sha256=7wQr9oIiYzgRbApRd61xwngDUfjE10rbPJOb059A_so,445
198
+ plexflow/spiders/tgx/pipelines/publish_pipeline.py,sha256=iMVZ7YwbZzACifSmLf-F7Bkb9ms_Lxy3swSCNpAYRb4,358
199
+ plexflow/spiders/tgx/pipelines/torrent_info_pipeline.py,sha256=-iMcEQAQjG8ehKgspIfsCpHK9aeooka8i59j6-kVPdc,366
200
+ plexflow/spiders/tgx/pipelines/validation_pipeline.py,sha256=wxT8JzQswpfq3wKIaDkc4Cg-7NNLQHyZeIUnrvEZF4o,546
201
+ plexflow/spiders/tgx/settings.py,sha256=A4bzof5TDLkMF6P_37otNY5e3b0Bwqia2vGmLwVO4cA,1180
202
+ plexflow/spiders/tgx/spider.py,sha256=fBDksNThRm9bWjvEKeora6eiUKkxQBdISBaYOXIvjgM,2421
203
+ plexflow/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
204
+ plexflow/utils/antibot/human_like_requests.py,sha256=UIEL_fJrYct8hrhLkSzGD7v9ZPIGZtgi8l6aAdfAk2g,5843
205
+ plexflow/utils/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
+ plexflow/utils/api/context/http.py,sha256=18JEz4g4N6GkND-YWNDVTMdAd6P5sBZ8wxfqdW61hzM,2975
207
+ plexflow/utils/api/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
+ plexflow/utils/api/rest/antibot_restful.py,sha256=7sxaNsx5jAehyBg1qYfLg45Q_AyijsG8X48_y5oI5Yk,2749
209
+ plexflow/utils/api/rest/restful.py,sha256=vk7TjRuvXcs4c3MgjU38IPDhVy9GQ2y-WZyJAvEbT88,2405
210
+ plexflow/utils/captcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
211
+ plexflow/utils/captcha/bypass/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
+ plexflow/utils/captcha/bypass/decode_audio.py,sha256=yP8vZiIbnCR-wD2Ex3cDyCatj_fXGJTv5IQHPpM70hI,1327
213
+ plexflow/utils/download/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
+ plexflow/utils/download/gz.py,sha256=oT0fVsMO-Y3USYYu2SwHn8nz0vSho36US439vtlqB9w,700
215
+ plexflow/utils/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
+ plexflow/utils/filesystem/search.py,sha256=ed2ixbx5r2z_xtk19--Dfi5KK9g3HcsaAk0sqszeTSs,6371
217
+ plexflow/utils/gmail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
+ plexflow/utils/gmail/mails.py,sha256=hQIXiYR5LYeoiSH_lhbVM9criDBnTeCNmpZ5tvuUnsA,4562
219
+ plexflow/utils/hooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
+ plexflow/utils/hooks/http.py,sha256=qyQNAx0RK1XfDgn71SKlxKJ_466j39VgXUEfnw8L9YY,3994
221
+ plexflow/utils/hooks/postgresql.py,sha256=Ixhw6XNtutXVGPlcYB1g7SJkzHo8EkMPD5XFpZsd5cQ,4002
222
+ plexflow/utils/hooks/redis.py,sha256=ZvrSgM7s-OgRLIb8uV8rm6XjF40rLkoPOPABEmuKdNk,4228
223
+ plexflow/utils/image/storage.py,sha256=RlV7D0aGqoG583xP8YCC7TK5YmW8rFff2NwvtOzy5DE,1168
224
+ plexflow/utils/imdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
+ plexflow/utils/imdb/imdb_codes.py,sha256=aIECE9IEFSYbY3A-erONQiFUqy36JrH2hhcM3qWObk0,3028
226
+ plexflow/utils/pubsub/consume.py,sha256=hgp-W2GzFzcO-OAaQFxk5zTljpoWqreRTAowQxljO_k,3130
227
+ plexflow/utils/pubsub/produce.py,sha256=id0KGg47V4ubQ16a-gDSDb9ICy86NfO0BcUbBPgf8As,1068
228
+ plexflow/utils/retry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
+ plexflow/utils/retry/utils.py,sha256=wqdtkxSBT9dYVgWGKSYxuEiZHBVmfOjzVxXDOweVuoo,1784
230
+ plexflow/utils/strings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
+ plexflow/utils/strings/filesize.py,sha256=mLVd0xqIEzAif5Tn_PyCddFmUPXPNnEbLhBNJTsgOvs,1547
232
+ plexflow/utils/strings/language.py,sha256=J9-wqmCdxf9Ws5_X1tV4vX4d7AGkKci0eaBE4Lit0j0,269
233
+ plexflow/utils/subtitle/search.py,sha256=wnEg6cLJDulxVPg7kkAoJLsm2o0wRy3OLYp5t73yaSE,2432
234
+ plexflow/utils/tasks/decorators.py,sha256=1pF3bVFO2YCJd2gFNVYdmaQpbV3nRP1RxJ_OhLU-g7E,3051
235
+ plexflow/utils/tasks/k8s/task.py,sha256=oCfOBjitZ48D1M52w2dpf7HaHZTmvYV9YS_ccixLs0w,2709
236
+ plexflow/utils/thread_safe/safe_list.py,sha256=BScIH27Gh84Nb7SZxmfeZ9vF2hh75yCml266fN6UHLI,1261
237
+ plexflow/utils/thread_safe/safe_set.py,sha256=wTlR3RK6QShRFdij1-HOT2YUAtONivySQ1wfWRL-7pU,1844
238
+ plexflow/utils/torrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
+ plexflow/utils/torrent/analyze.py,sha256=Wt8NqbgocnLz0arKxqC1qQmvGh6XUbh2fe-lHLYSjjc,4496
240
+ plexflow/utils/torrent/extract/common.py,sha256=464KG9-8SXL48Yy8rH-7q1E0qdxjw6vFqW6JktAG6H0,1215
241
+ plexflow/utils/torrent/extract/ext.py,sha256=3jmBfR1zL8XgdhR1BVZWRmH7TN68gFcX5K799bjwN0o,271641
242
+ plexflow/utils/torrent/extract/extratorrent.py,sha256=G_PlvT1CcMiq96q3BMsSwMg-BEjD3kp0IBB6up8zoK4,2339
243
+ plexflow/utils/torrent/extract/kat.py,sha256=-pQND_1forno9wn5w-Kua7PJFjKpDH_HcYvMIOJ8kA0,91269
244
+ plexflow/utils/torrent/extract/tgx.py,sha256=EMvuK5LcuukTaDgTsSU-9fP4vYDU931957JnyLnhCcY,3223
245
+ plexflow/utils/torrent/extract/therarbg.py,sha256=q97dJCmpnzKJcrhlOwOWx-ovMCk5qVY1HCXa4RAvrao,6527
246
+ plexflow/utils/torrent/extract/torrentquest.py,sha256=gQn9GanFM5SXvpwjcyRu0XgTZ23KTJ_FeHIsanGl2WI,6868
247
+ plexflow/utils/torrent/files.py,sha256=6b2Th2hB75etZfupfyjlSjQHcFfLSYUlFPkHaH50W4o,952
248
+ plexflow/utils/torrent/hash.py,sha256=TDAcTFatdwtYR9yN6PWI2uS5tzyFEldS9N5c-T56We8,2958
249
+ plexflow/utils/transcribe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
+ plexflow/utils/transcribe/speech2text.py,sha256=DUhLS3DkHy047eTUHUoR_5TPOxSjyg5y1Iofpt0Iu18,1060
251
+ plexflow/utils/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
+ plexflow/utils/video/subtitle.py,sha256=15-XZJ55JeLMxiaR1IbSrMkps0PTbSZVS4AklgUdUU8,2207
253
+ plexflow-0.0.64.dist-info/METADATA,sha256=vMdUrfXHY9YTqLF1T19OG2X4gVnKB7ke0iGQD2j8BRU,3070
254
+ plexflow-0.0.64.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
255
+ plexflow-0.0.64.dist-info/entry_points.txt,sha256=REGVJzZ5cY7JzCEHJnK7rNXOWmmYQIMU2W91CklPczQ,1162
256
+ plexflow-0.0.64.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,24 @@
1
+ [console_scripts]
2
+ auto_torrents=scripts.torrents.auto_torrents:main
3
+ chat_with_plexa=scripts.plex.discover.chat_with_plexa:main
4
+ download_subtitles=scripts.subtitles.download_subtitles:main
5
+ find_torrents=scripts.torrents.find_torrents:main
6
+ gemini_ai=scripts.gemini.gemini_ai:main
7
+ get_movie=scripts.metadata.auto.get_movie:main
8
+ get_show=scripts.metadata.auto.get_show:main
9
+ human_like=scripts.antibot.human_like:main
10
+ match_torrent_imdb=scripts.torrents.match_torrent_imdb:main
11
+ on_download_completed=scripts.torrents.on_download_completed:main
12
+ parse_movie_torrent=scripts.torrents.parse_movie_torrent:main
13
+ plex_activity_feed=scripts.plex.discover.get_activity_feed:main
14
+ publish_hello_world=scripts.kafka.publish_hello_world:main
15
+ read_from_gmail=scripts.plex.discover.read_from_gmail:main
16
+ redis_hook=scripts.redis.redis_hook:main
17
+ subscribe_hello_world=scripts.kafka.subscribe_hello_world:main
18
+ tgx_context=scripts.torrents.tgx_context:main
19
+ tgx_spider=scripts.spiders.tgx_spider:main
20
+ torrentquest=scripts.torrents.torrentquest:main
21
+ treecat=scripts.utils.treecat:main
22
+ universal_movie=scripts.metadata.universal.movie:main
23
+ watchlist=scripts.plex.watchlist.watchlist:main
24
+