mrx-aniworld 2.1.9__tar.gz

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 (153) hide show
  1. mrx_aniworld-2.1.9/LICENSE +20 -0
  2. mrx_aniworld-2.1.9/MANIFEST.in +7 -0
  3. mrx_aniworld-2.1.9/PKG-INFO +307 -0
  4. mrx_aniworld-2.1.9/README.md +270 -0
  5. mrx_aniworld-2.1.9/pyproject.toml +61 -0
  6. mrx_aniworld-2.1.9/setup.cfg +4 -0
  7. mrx_aniworld-2.1.9/src/aniworld/.env.example +162 -0
  8. mrx_aniworld-2.1.9/src/aniworld/__init__.py +0 -0
  9. mrx_aniworld-2.1.9/src/aniworld/__main__.py +9 -0
  10. mrx_aniworld-2.1.9/src/aniworld/anime4k/__init__.py +3 -0
  11. mrx_aniworld-2.1.9/src/aniworld/anime4k/anime4k.py +754 -0
  12. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_AutoDownscalePre_x2.glsl +36 -0
  13. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_AutoDownscalePre_x4.glsl +36 -0
  14. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Clamp_Highlights.glsl +90 -0
  15. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Darken_Fast.glsl +216 -0
  16. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Darken_HQ.glsl +198 -0
  17. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Darken_VeryFast.glsl +218 -0
  18. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Deblur_DoG.glsl +153 -0
  19. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Deblur_Original.glsl +287 -0
  20. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Denoise_Bilateral_Mean.glsl +67 -0
  21. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Denoise_Bilateral_Median.glsl +120 -0
  22. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Denoise_Bilateral_Mode.glsl +103 -0
  23. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_L.glsl +429 -0
  24. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_M.glsl +275 -0
  25. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_S.glsl +137 -0
  26. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_Soft_L.glsl +429 -0
  27. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_Soft_M.glsl +275 -0
  28. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_Soft_S.glsl +137 -0
  29. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_Soft_UL.glsl +1704 -0
  30. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_Soft_VL.glsl +873 -0
  31. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_UL.glsl +1704 -0
  32. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Restore_CNN_VL.glsl +873 -0
  33. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Thin_Fast.glsl +234 -0
  34. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Thin_HQ.glsl +222 -0
  35. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Thin_VeryFast.glsl +236 -0
  36. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_CNN_x2_L.glsl +461 -0
  37. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_CNN_x2_M.glsl +300 -0
  38. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_CNN_x2_S.glsl +158 -0
  39. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_CNN_x2_UL.glsl +1702 -0
  40. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_CNN_x2_VL.glsl +969 -0
  41. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_DTD_x2.glsl +613 -0
  42. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_Deblur_DoG_x2.glsl +158 -0
  43. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_Deblur_Original_x2.glsl +277 -0
  44. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_Denoise_CNN_x2_L.glsl +461 -0
  45. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_Denoise_CNN_x2_M.glsl +300 -0
  46. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_Denoise_CNN_x2_S.glsl +158 -0
  47. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_Denoise_CNN_x2_UL.glsl +1702 -0
  48. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_Denoise_CNN_x2_VL.glsl +969 -0
  49. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_DoG_x2.glsl +143 -0
  50. mrx_aniworld-2.1.9/src/aniworld/anime4k/shader/Anime4K_Upscale_Original_x2.glsl +277 -0
  51. mrx_aniworld-2.1.9/src/aniworld/arguments.py +52 -0
  52. mrx_aniworld-2.1.9/src/aniworld/autodeps.py +325 -0
  53. mrx_aniworld-2.1.9/src/aniworld/bin/windows/mpv-register.bat +12 -0
  54. mrx_aniworld-2.1.9/src/aniworld/bin/windows/mpv-unregister.bat +12 -0
  55. mrx_aniworld-2.1.9/src/aniworld/bin/windows/mpv.com +0 -0
  56. mrx_aniworld-2.1.9/src/aniworld/bin/windows/updater.bat +24 -0
  57. mrx_aniworld-2.1.9/src/aniworld/common/__init__.py +3 -0
  58. mrx_aniworld-2.1.9/src/aniworld/common/common.py +91 -0
  59. mrx_aniworld-2.1.9/src/aniworld/config.py +349 -0
  60. mrx_aniworld-2.1.9/src/aniworld/entry.py +62 -0
  61. mrx_aniworld-2.1.9/src/aniworld/env.py +47 -0
  62. mrx_aniworld-2.1.9/src/aniworld/extractors/__init__.py +24 -0
  63. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/doodstream.py +141 -0
  64. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/filemoon.py +311 -0
  65. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/loadx.py +46 -0
  66. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/luluvdo.py +46 -0
  67. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/streamtape.py +46 -0
  68. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/vidara.py +82 -0
  69. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/vidmoly.py +103 -0
  70. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/vidoza.py +79 -0
  71. mrx_aniworld-2.1.9/src/aniworld/extractors/provider/voe.py +259 -0
  72. mrx_aniworld-2.1.9/src/aniworld/logger.py +115 -0
  73. mrx_aniworld-2.1.9/src/aniworld/models/__init__.py +21 -0
  74. mrx_aniworld-2.1.9/src/aniworld/models/aniworld_to/__init__.py +9 -0
  75. mrx_aniworld-2.1.9/src/aniworld/models/aniworld_to/episode.py +717 -0
  76. mrx_aniworld-2.1.9/src/aniworld/models/aniworld_to/season.py +338 -0
  77. mrx_aniworld-2.1.9/src/aniworld/models/aniworld_to/series.py +732 -0
  78. mrx_aniworld-2.1.9/src/aniworld/models/common/__init__.py +17 -0
  79. mrx_aniworld-2.1.9/src/aniworld/models/common/common.py +1384 -0
  80. mrx_aniworld-2.1.9/src/aniworld/models/filmpalast_to/episode.py +507 -0
  81. mrx_aniworld-2.1.9/src/aniworld/models/hanime_tv/__init__.py +5 -0
  82. mrx_aniworld-2.1.9/src/aniworld/models/hanime_tv/episode.py +13 -0
  83. mrx_aniworld-2.1.9/src/aniworld/models/hianime_to/__init__.py +9 -0
  84. mrx_aniworld-2.1.9/src/aniworld/models/hianime_to/episode.py +263 -0
  85. mrx_aniworld-2.1.9/src/aniworld/models/hianime_to/season.py +146 -0
  86. mrx_aniworld-2.1.9/src/aniworld/models/hianime_to/series.py +273 -0
  87. mrx_aniworld-2.1.9/src/aniworld/models/s_to/__init__.py +9 -0
  88. mrx_aniworld-2.1.9/src/aniworld/models/s_to/episode.py +574 -0
  89. mrx_aniworld-2.1.9/src/aniworld/models/s_to/season.py +170 -0
  90. mrx_aniworld-2.1.9/src/aniworld/models/s_to/series.py +603 -0
  91. mrx_aniworld-2.1.9/src/aniworld/playwright/__init__.py +3 -0
  92. mrx_aniworld-2.1.9/src/aniworld/playwright/captcha.py +678 -0
  93. mrx_aniworld-2.1.9/src/aniworld/playwright/test.py +12 -0
  94. mrx_aniworld-2.1.9/src/aniworld/providers.py +129 -0
  95. mrx_aniworld-2.1.9/src/aniworld/search.py +579 -0
  96. mrx_aniworld-2.1.9/src/aniworld/web/__init__.py +3 -0
  97. mrx_aniworld-2.1.9/src/aniworld/web/app.py +7118 -0
  98. mrx_aniworld-2.1.9/src/aniworld/web/auth.py +410 -0
  99. mrx_aniworld-2.1.9/src/aniworld/web/db.py +2364 -0
  100. mrx_aniworld-2.1.9/src/aniworld/web/library_watcher.py +189 -0
  101. mrx_aniworld-2.1.9/src/aniworld/web/notifications.py +699 -0
  102. mrx_aniworld-2.1.9/src/aniworld/web/static/advanced_search.css +634 -0
  103. mrx_aniworld-2.1.9/src/aniworld/web/static/app.js +2856 -0
  104. mrx_aniworld-2.1.9/src/aniworld/web/static/autosync.js +563 -0
  105. mrx_aniworld-2.1.9/src/aniworld/web/static/favourites.js +69 -0
  106. mrx_aniworld-2.1.9/src/aniworld/web/static/flags/english.svg +2 -0
  107. mrx_aniworld-2.1.9/src/aniworld/web/static/flags/german.svg +479 -0
  108. mrx_aniworld-2.1.9/src/aniworld/web/static/flags/japanese-englishSub.svg +478 -0
  109. mrx_aniworld-2.1.9/src/aniworld/web/static/flags/japanese-germanSub.svg +479 -0
  110. mrx_aniworld-2.1.9/src/aniworld/web/static/icon-144.png +0 -0
  111. mrx_aniworld-2.1.9/src/aniworld/web/static/icon-192.png +0 -0
  112. mrx_aniworld-2.1.9/src/aniworld/web/static/icon-48.png +0 -0
  113. mrx_aniworld-2.1.9/src/aniworld/web/static/icon-512.png +0 -0
  114. mrx_aniworld-2.1.9/src/aniworld/web/static/icon-72.png +0 -0
  115. mrx_aniworld-2.1.9/src/aniworld/web/static/icon-96.png +0 -0
  116. mrx_aniworld-2.1.9/src/aniworld/web/static/icon.png +0 -0
  117. mrx_aniworld-2.1.9/src/aniworld/web/static/icon.svg +10 -0
  118. mrx_aniworld-2.1.9/src/aniworld/web/static/integrations.css +466 -0
  119. mrx_aniworld-2.1.9/src/aniworld/web/static/integrations.js +876 -0
  120. mrx_aniworld-2.1.9/src/aniworld/web/static/library.js +1189 -0
  121. mrx_aniworld-2.1.9/src/aniworld/web/static/manifest.json +47 -0
  122. mrx_aniworld-2.1.9/src/aniworld/web/static/placeholder.svg +26 -0
  123. mrx_aniworld-2.1.9/src/aniworld/web/static/pwa.js +102 -0
  124. mrx_aniworld-2.1.9/src/aniworld/web/static/queue.js +785 -0
  125. mrx_aniworld-2.1.9/src/aniworld/web/static/seerr.js +876 -0
  126. mrx_aniworld-2.1.9/src/aniworld/web/static/settings.js +1067 -0
  127. mrx_aniworld-2.1.9/src/aniworld/web/static/stats.js +168 -0
  128. mrx_aniworld-2.1.9/src/aniworld/web/static/style.css +7846 -0
  129. mrx_aniworld-2.1.9/src/aniworld/web/static/sw.js +53 -0
  130. mrx_aniworld-2.1.9/src/aniworld/web/static/upscale_queue.js +334 -0
  131. mrx_aniworld-2.1.9/src/aniworld/web/templates/advanced_search.html +167 -0
  132. mrx_aniworld-2.1.9/src/aniworld/web/templates/autosync.html +120 -0
  133. mrx_aniworld-2.1.9/src/aniworld/web/templates/base.html +774 -0
  134. mrx_aniworld-2.1.9/src/aniworld/web/templates/encoding.html +1049 -0
  135. mrx_aniworld-2.1.9/src/aniworld/web/templates/favourites.html +19 -0
  136. mrx_aniworld-2.1.9/src/aniworld/web/templates/index.html +216 -0
  137. mrx_aniworld-2.1.9/src/aniworld/web/templates/integrations.html +535 -0
  138. mrx_aniworld-2.1.9/src/aniworld/web/templates/library.html +65 -0
  139. mrx_aniworld-2.1.9/src/aniworld/web/templates/login.html +50 -0
  140. mrx_aniworld-2.1.9/src/aniworld/web/templates/notifications.html +1470 -0
  141. mrx_aniworld-2.1.9/src/aniworld/web/templates/seerr.html +119 -0
  142. mrx_aniworld-2.1.9/src/aniworld/web/templates/settings.html +705 -0
  143. mrx_aniworld-2.1.9/src/aniworld/web/templates/setup.html +44 -0
  144. mrx_aniworld-2.1.9/src/aniworld/web/templates/shared_modals.html +154 -0
  145. mrx_aniworld-2.1.9/src/aniworld/web/templates/stats.html +37 -0
  146. mrx_aniworld-2.1.9/src/mrx_aniworld.egg-info/PKG-INFO +307 -0
  147. mrx_aniworld-2.1.9/src/mrx_aniworld.egg-info/SOURCES.txt +151 -0
  148. mrx_aniworld-2.1.9/src/mrx_aniworld.egg-info/dependency_links.txt +1 -0
  149. mrx_aniworld-2.1.9/src/mrx_aniworld.egg-info/entry_points.txt +2 -0
  150. mrx_aniworld-2.1.9/src/mrx_aniworld.egg-info/requires.txt +18 -0
  151. mrx_aniworld-2.1.9/src/mrx_aniworld.egg-info/top_level.txt +1 -0
  152. mrx_aniworld-2.1.9/tests/test_aniworld_models.py +93 -0
  153. mrx_aniworld-2.1.9/tests/test_aniworld_providers.py +46 -0
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2024-2026 phoenixthrush, SiroxCW, Tmaster055
2
+ Copyright (c) 2026 TheMRX13, Domekologe
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is
9
+ furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
20
+ OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,7 @@
1
+ include src/aniworld/.env.example
2
+ include src/aniworld/ascii/ASCII.txt
3
+ include src/aniworld/aniskip/scripts/aniskip.lua
4
+ include src/aniworld/aniskip/scripts/autoexit.lua
5
+ include src/aniworld/aniskip/scripts/autostart.lua
6
+ recursive-include src/aniworld/web/templates *.html
7
+ recursive-include src/aniworld/web/static *.css *.js
@@ -0,0 +1,307 @@
1
+ Metadata-Version: 2.4
2
+ Name: mrx-aniworld
3
+ Version: 2.1.9
4
+ Summary: MRX-AniWorld-Downloader is a WebUI-only tool for downloading anime and series from AniWorld, SerienStream and FilmPalast. The CLI has been removed — start with 'aniworld' to launch the web interface directly.
5
+ Author-email: "TheMRX13 (Pascal Keller)" <keller.pascal1313@gmail.com>, Domekologe <placeholder@example.com>
6
+ License-Expression: MIT
7
+ Project-URL: homepage, https://github.com/TheMRX13/MRX-AniWorld-Downloader
8
+ Project-URL: changelog, https://github.com/TheMRX13/MRX-AniWorld-Downloader/commits/models
9
+ Project-URL: documentation, https://readthedocs.org
10
+ Project-URL: bugs, https://github.com/TheMRX13/MRX-AniWorld-Downloader/issues
11
+ Project-URL: issues, https://github.com/TheMRX13/MRX-AniWorld-Downloader/issues
12
+ Project-URL: tracker, https://github.com/TheMRX13/MRX-AniWorld-Downloader/issues
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Operating System :: OS Independent
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: niquests
19
+ Requires-Dist: ffmpeg-python
20
+ Requires-Dist: yt-dlp
21
+ Requires-Dist: python-dotenv
22
+ Requires-Dist: rich
23
+ Requires-Dist: fake-useragent
24
+ Requires-Dist: flask
25
+ Requires-Dist: flask-wtf
26
+ Requires-Dist: flask-limiter
27
+ Requires-Dist: authlib
28
+ Requires-Dist: requests
29
+ Requires-Dist: waitress
30
+ Requires-Dist: packaging
31
+ Requires-Dist: cryptography
32
+ Requires-Dist: patchright
33
+ Requires-Dist: pywebpush
34
+ Requires-Dist: watchdog
35
+ Requires-Dist: dnspython
36
+ Dynamic: license-file
37
+
38
+ <a id="readme-top"></a>
39
+
40
+ # MRX-AniWorld Downloader
41
+
42
+ **MRX-AniWorld Downloader** is a cross-platform WebUI tool for downloading anime from aniworld.to, series from s.to, and movies from filmpalast.to. It runs on Windows, macOS, and Linux.
43
+
44
+ > This project is a fork of the original [AniWorld-Downloader](https://github.com/phoenixthrush/AniWorld-Downloader) by [phoenixthrush](https://github.com/phoenixthrush), [SiroxCW](https://github.com/SiroxCW) and [Tmaster055](https://github.com/Tmaster055) — maintained and extended here by [TheMRX13](https://github.com/TheMRX13) and [Domekologe](https://github.com/Domekologe).
45
+
46
+ > **Note:** The CLI has been **completely removed**. This project is now **WebUI-only**. Run `aniworld` to launch the web interface directly — no flags needed.
47
+
48
+ ![GitHub Release](https://img.shields.io/github/v/release/TheMRX13/MRX-AniWorld-Downloader)
49
+ ![GitHub License](https://img.shields.io/github/license/TheMRX13/MRX-AniWorld-Downloader)
50
+ ![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/TheMRX13/MRX-AniWorld-Downloader)
51
+ ![GitHub Repo stars](https://img.shields.io/github/stars/TheMRX13/MRX-AniWorld-Downloader)
52
+ ![GitHub forks](https://img.shields.io/github/forks/TheMRX13/MRX-AniWorld-Downloader)
53
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Server-5865F2?logo=discord&logoColor=white)](https://discord.gg/TGaZ9hFFhC)
54
+
55
+ WebUI (Landing Page) | WebUI (Auto-Sync)
56
+ :-------------------------:|:-------------------------:
57
+ ![AniWorld Downloader - Demo](https://github.com/TheMRX13/MRX-AniWorld-Downloader/blob/models/.github/assets/demo-menu.png?raw=true) | ![AniWorld Downloader - Demo](https://github.com/TheMRX13/MRX-AniWorld-Downloader/blob/models/.github/assets/demo-sync.png?raw=true)
58
+
59
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
60
+
61
+ ## TL;DR - Quick Start
62
+
63
+ ```bash
64
+ # Install latest stable release (recommended)
65
+ pip install mrx-aniworld
66
+
67
+ # Install latest development commit (may be unstable)
68
+ pip install --upgrade git+https://github.com/TheMRX13/MRX-AniWorld-Downloader.git@models#egg=aniworld
69
+
70
+ # Launch AniWorld Downloader (starts WebUI directly)
71
+ aniworld
72
+
73
+ # Use a custom port
74
+ aniworld -wP 9090
75
+ ```
76
+
77
+ > **Installed version:** Run `pip show mrx-aniworld` to see your installed version. Release installs show a plain version number (e.g. `2.1.6`), dev installs show the base version plus the commit hash (e.g. `2.1.6-dev+abc1234`).
78
+
79
+ > **⚠️ Requirements:** ffmpeg must be installed and available in your system PATH for the downloader to work properly.
80
+
81
+ The WebUI starts on `0.0.0.0` (all interfaces) with authentication enabled by default. Open your browser and navigate to `http://localhost:8080` (or your custom port).
82
+
83
+ > **No `.env` file needed.** All settings are configured directly in the WebUI under **Settings**. Existing `.env` files from previous versions are automatically imported into the database on first start.
84
+
85
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
86
+
87
+ ## CLI Removed
88
+
89
+ The CLI (interactive menu, direct URL downloads, SyncPlay, AniSkip, Anime4K flags) has been **fully removed** in this fork. All functionality is available through the WebUI. The only command-line flags are:
90
+
91
+ | Flag | Description |
92
+ | --- | --- |
93
+ | `-wP` / `--web-port` | Port for the web UI (default: `8080`) |
94
+ | `-wN` / `--no-browser` | Don't open the browser automatically on startup |
95
+ | `-d` / `--debug` | Enable debug logging |
96
+
97
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
98
+
99
+ ## Still in Development
100
+
101
+ This project is actively being improved. Current work in progress includes:
102
+
103
+ - [ ] Multi-Language Support — UI currently German only, English and other languages planned
104
+ - [ ] More Extractors — additional video host support beyond the current providers
105
+ - [ ] Live Transcode / In-Browser Playback — watch downloaded files directly in the UI
106
+ - [ ] More Sources — additional anime, series and movie providers (open a feature request)
107
+ - [ ] AutoSync Episode Filter — configure per job which seasons/episodes to sync, skip specials/OVAs
108
+ - [ ] Provider Fallback Order — automatically try the next provider if the primary one fails
109
+ - [ ] Calendar View — show upcoming episode air dates for AutoSync jobs based on TMDB data
110
+ - [ ] Bandwidth Limit / Download Time Window — throttle speed or restrict downloads to specific hours
111
+ - [ ] Download History — searchable log of all completed downloads with date, size and duration
112
+ - [ ] Generic Outgoing Webhook — send a configurable POST request on download completion (Home Assistant, n8n, etc.)
113
+ - [ ] Subtitle Support — additional language and subtitle download options
114
+
115
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
116
+
117
+ ## Features
118
+
119
+ ### Web Interface
120
+ - **Browse & Search** – Explore and search titles from AniWorld, SerienStream and FilmPalast in a modern UI
121
+ - **Download Queue** – Manage active, queued, and completed downloads in real time
122
+ - **Media Library** – Browse your downloaded files in a built-in file explorer with series/season/episode tree view
123
+ - **Favourites** – Bookmark series and access them quickly from a dedicated page
124
+ - **AutoSync** – Automatically check for new episodes and download them on a schedule; import/export sync jobs as JSON
125
+ - **Statistics** – View detailed download activity: total episodes, storage used, and more
126
+ - **Encoding Settings** – Configure FFmpeg encoding mode (Stream Copy, H.264, H.265/HEVC) with hardware acceleration support (NVENC, VAAPI, VideoToolbox) and quality presets
127
+ - **Push Notifications** – Get notified on completed downloads via **Web Push**, **Telegram**, **Pushover**, **Discord**, or **WhatsApp**
128
+ - **CineInfo** – Enrich series cards and detail views with **TMDB** metadata: streaming providers, FSK age ratings, genres, and audience scores
129
+ - **Jellyfin / Plex Integration** – Automatically trigger a library refresh after each download
130
+ - **Seerr Integration** – Connect to **Jellyseerr** or **Overseerr** to view and process pending media requests directly in the UI
131
+ - **Settings** – All configuration is done through the WebUI — no `.env` file needed. Settings are organized in tabs: General, Downloads, Auto-Sync, Network, Authentication, API, and Updates
132
+ - **Authentication & SSO** – Always-on local authentication with multi-user support and roles; optional OIDC Single Sign-On (Keycloak, Authentik, Google, etc.) configurable entirely from the UI
133
+ - **Network Exposure** – Binds to `0.0.0.0` by default for LAN/Docker access
134
+ - **API** – Full REST API for programmatic access to all download and queue features
135
+ - **Docker Ready** – Deploy easily using **Docker** or **Docker Compose**
136
+ - **Anime Upscaling** – Upscaling Animes out of the box with **Anime4K**
137
+
138
+ ### Core Download Engine
139
+ - **Downloading** – Grab full series, individual seasons, or single episodes for offline viewing
140
+ - **Multiple Providers** – Stream from various sources on **aniworld.to**, **s.to** and **filmpalast.to**
141
+ - **Language Preferences** – Switch between **German Dub**, **English Sub**, or **German Sub**
142
+ - **Muxing** – Automatically combine video and audio streams into a single file
143
+
144
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
145
+
146
+ ## Supported Site Providers
147
+
148
+ These are the websites you can pass URLs from:
149
+
150
+ | Site | URL | Status | Notes |
151
+ | --- | --- | --- | --- |
152
+ | AniWorld | aniworld.to | ✅ Working | Anime, German dub & sub |
153
+ | SerienStream | s.to | ✅ Working | Series, German dub & sub |
154
+ | FilmPalast | filmpalast.to | ✅ Working | Movies only |
155
+
156
+ ## Supported Video Extractors
157
+
158
+ These are the video hosters used behind the scenes to deliver the stream:
159
+
160
+ | Extractor | Status | Last Tested |
161
+ | --- | --- | --- |
162
+ | VOE | ✅ Working | 04/26 |
163
+ | Vidoza | ✅ Working | 04/26 |
164
+ | Vidmoly | ✅ Working | 04/26 |
165
+ | Filemoon | ✅ Working | 04/26 |
166
+ | Doodstream | ✅ Working | 04/26 |
167
+ | Vidara | ✅ Working | 04/26 |
168
+ | Vidsonic | ⏳ Not Implemented | — |
169
+ | Upbolt | ⏳ Not Implemented | — |
170
+ | Streamtape | ⏳ Not Implemented | — |
171
+ | LoadX | ⏳ Not Implemented | — |
172
+ | Luluvdo | ⏳ Not Implemented | — |
173
+
174
+ ### Currently Prioritized Extractors per Site
175
+
176
+ - **AniWorld** – VOE, Filemoon, Vidmoly
177
+ - **SerienStream** – VOE, Vidoza
178
+ - **FilmPalast** – VOE (soon Vidara and Vidsonic)
179
+
180
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
181
+
182
+ ## Docker
183
+
184
+ Build the AniWorld Downloader Docker image:
185
+
186
+ ```bash
187
+ docker build -t aniworld .
188
+ ```
189
+
190
+ ### Running the Container
191
+
192
+ - **macOS / Linux (bash/zsh):**
193
+
194
+ ```bash
195
+ docker run -it --rm \
196
+ -p 8080:8080 \
197
+ -v "${PWD}/Downloads:/app/Downloads" \
198
+ aniworld
199
+ ```
200
+
201
+ - **Windows (PowerShell):**
202
+
203
+ ```powershell
204
+ docker run -it --rm `
205
+ -p 8080:8080 `
206
+ -v "${PWD}\Downloads:/app/Downloads" `
207
+ aniworld
208
+ ```
209
+
210
+ > **Note:**
211
+ > Mount your local `Downloads` folder to `/app/Downloads` in the container to save downloaded episodes. The WebUI is available at `http://localhost:8080`.
212
+
213
+ ### Docker Compose (with Web UI)
214
+
215
+ Start AniWorld Downloader using Docker Compose:
216
+
217
+ ```bash
218
+ docker-compose up -d --build
219
+ ```
220
+
221
+ This command will:
222
+
223
+ - **Build the Docker image** if it hasn't been built yet
224
+ - **Start the container** in detached mode (`-d`)
225
+ - Launch the **WebUI** automatically
226
+ - Automatically **restart the container unless stopped manually** (`restart: unless-stopped`)
227
+
228
+ To stop the container:
229
+
230
+ ```bash
231
+ docker-compose down
232
+ ```
233
+
234
+ > All settings (language, provider, SSO, reverse proxy URL, etc.) are configured via the WebUI after first launch — no `.env` file or environment variables required. See `docker-compose.yaml` for optional automation via environment variables (e.g. pre-creating an admin account).
235
+
236
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
237
+
238
+ ## Contributing
239
+
240
+ Contributions to MRX-AniWorld Downloader are **highly appreciated**! You can help improve the project in several ways:
241
+
242
+ - **Report Bugs** – Identify and report issues to improve functionality
243
+ - **Suggest Features** – Share ideas to expand the tool's capabilities
244
+ - **Submit Pull Requests** – Contribute code to fix bugs or add new features
245
+ - **Improve Documentation** – Help enhance user guides, tutorials, and technical documentation
246
+
247
+ Before submitting contributions, please check the repository for existing issues or feature requests to avoid duplicates. You're also welcome to discuss ideas on our [Discord](https://discord.gg/TGaZ9hFFhC) before opening a PR.
248
+
249
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
250
+
251
+ ## Credits
252
+
253
+ MRX-AniWorld Downloader builds upon the work of several outstanding open-source projects and individuals:
254
+
255
+ ### Original Authors
256
+ - **[phoenixthrush](https://github.com/phoenixthrush)** – Original creator of [AniWorld-Downloader](https://github.com/phoenixthrush/AniWorld-Downloader)
257
+ - **[SiroxCW](https://github.com/SiroxCW)** – Core contributor to the original codebase
258
+ - **[Tmaster055](https://github.com/Tmaster055)** – Core contributor to the original codebase
259
+
260
+ ### Libraries & Tools
261
+ - **[mpv](https://github.com/mpv-player/mpv.git)** – A versatile media player used for seamless video streaming
262
+ - **[Flask](https://flask.palletsprojects.com/)** – Web framework powering the WebUI
263
+ - **[Waitress](https://docs.pylonsproject.org/projects/waitress/)** – Production WSGI server
264
+
265
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
266
+
267
+ ## Other Cool Projects
268
+
269
+ - **[Jellyfin AniWorld Downloader](https://github.com/SiroxCW/Jellyfin-AniWorld-Downloader)** by **[SiroxCW](https://github.com/SiroxCW)** – A Jellyfin plugin that lets you browse and download anime & series directly from AniWorld, fully integrated into your media server.
270
+
271
+ - **[AniBridge](https://github.com/Zzackllack/AniBridge)** by **[Zzackllack](https://github.com/Zzackllack)** – A minimal FastAPI service that bridges anime and series streaming catalogues (AniWorld, SerienStream/s.to, MegaKino) with automation tools.
272
+
273
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
274
+
275
+ ## Support
276
+
277
+ If you need help with MRX-AniWorld Downloader, you have several options:
278
+
279
+ - **Join the [Discord Server](https://discord.gg/TGaZ9hFFhC)** – the fastest way to get help, ask questions, and chat with other users
280
+ - **Submit an issue** on the [GitHub Issues](https://github.com/TheMRX13/MRX-AniWorld-Downloader/issues) page – preferred for installation problems, bug reports, or feature requests, as it helps others benefit from shared solutions
281
+
282
+ If you find MRX-AniWorld Downloader useful, please star the repository on GitHub. Your support is greatly appreciated and motivates continued development.
283
+
284
+ Thank you for using MRX-AniWorld Downloader!
285
+
286
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
287
+
288
+ ## Legal Disclaimer
289
+
290
+ MRX-AniWorld Downloader is a **client-side** tool that enables access to content hosted on third-party websites. It **does not host, upload, store, or distribute any media itself**.
291
+
292
+ This software is **not intended to promote piracy or copyright infringement**. You are solely responsible for how you use MRX-AniWorld Downloader and for ensuring that your use **complies with applicable laws** and the **terms of service of the websites you access**.
293
+
294
+ The developer provides this project **"as is"** and is **not responsible for**:
295
+
296
+ - Third-party content
297
+ - External links
298
+ - The availability, accuracy, legality, or reliability of any third-party service
299
+
300
+ If you have concerns about specific content, **contact the relevant website owner, administrator, or hosting provider**.
301
+
302
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
303
+
304
+ ## License
305
+
306
+ This project is licensed under the **[MIT License](LICENSE)**.
307
+ For full terms and conditions, please see the LICENSE file included with this project.
@@ -0,0 +1,270 @@
1
+ <a id="readme-top"></a>
2
+
3
+ # MRX-AniWorld Downloader
4
+
5
+ **MRX-AniWorld Downloader** is a cross-platform WebUI tool for downloading anime from aniworld.to, series from s.to, and movies from filmpalast.to. It runs on Windows, macOS, and Linux.
6
+
7
+ > This project is a fork of the original [AniWorld-Downloader](https://github.com/phoenixthrush/AniWorld-Downloader) by [phoenixthrush](https://github.com/phoenixthrush), [SiroxCW](https://github.com/SiroxCW) and [Tmaster055](https://github.com/Tmaster055) — maintained and extended here by [TheMRX13](https://github.com/TheMRX13) and [Domekologe](https://github.com/Domekologe).
8
+
9
+ > **Note:** The CLI has been **completely removed**. This project is now **WebUI-only**. Run `aniworld` to launch the web interface directly — no flags needed.
10
+
11
+ ![GitHub Release](https://img.shields.io/github/v/release/TheMRX13/MRX-AniWorld-Downloader)
12
+ ![GitHub License](https://img.shields.io/github/license/TheMRX13/MRX-AniWorld-Downloader)
13
+ ![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/TheMRX13/MRX-AniWorld-Downloader)
14
+ ![GitHub Repo stars](https://img.shields.io/github/stars/TheMRX13/MRX-AniWorld-Downloader)
15
+ ![GitHub forks](https://img.shields.io/github/forks/TheMRX13/MRX-AniWorld-Downloader)
16
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Server-5865F2?logo=discord&logoColor=white)](https://discord.gg/TGaZ9hFFhC)
17
+
18
+ WebUI (Landing Page) | WebUI (Auto-Sync)
19
+ :-------------------------:|:-------------------------:
20
+ ![AniWorld Downloader - Demo](https://github.com/TheMRX13/MRX-AniWorld-Downloader/blob/models/.github/assets/demo-menu.png?raw=true) | ![AniWorld Downloader - Demo](https://github.com/TheMRX13/MRX-AniWorld-Downloader/blob/models/.github/assets/demo-sync.png?raw=true)
21
+
22
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
23
+
24
+ ## TL;DR - Quick Start
25
+
26
+ ```bash
27
+ # Install latest stable release (recommended)
28
+ pip install mrx-aniworld
29
+
30
+ # Install latest development commit (may be unstable)
31
+ pip install --upgrade git+https://github.com/TheMRX13/MRX-AniWorld-Downloader.git@models#egg=aniworld
32
+
33
+ # Launch AniWorld Downloader (starts WebUI directly)
34
+ aniworld
35
+
36
+ # Use a custom port
37
+ aniworld -wP 9090
38
+ ```
39
+
40
+ > **Installed version:** Run `pip show mrx-aniworld` to see your installed version. Release installs show a plain version number (e.g. `2.1.6`), dev installs show the base version plus the commit hash (e.g. `2.1.6-dev+abc1234`).
41
+
42
+ > **⚠️ Requirements:** ffmpeg must be installed and available in your system PATH for the downloader to work properly.
43
+
44
+ The WebUI starts on `0.0.0.0` (all interfaces) with authentication enabled by default. Open your browser and navigate to `http://localhost:8080` (or your custom port).
45
+
46
+ > **No `.env` file needed.** All settings are configured directly in the WebUI under **Settings**. Existing `.env` files from previous versions are automatically imported into the database on first start.
47
+
48
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
49
+
50
+ ## CLI Removed
51
+
52
+ The CLI (interactive menu, direct URL downloads, SyncPlay, AniSkip, Anime4K flags) has been **fully removed** in this fork. All functionality is available through the WebUI. The only command-line flags are:
53
+
54
+ | Flag | Description |
55
+ | --- | --- |
56
+ | `-wP` / `--web-port` | Port for the web UI (default: `8080`) |
57
+ | `-wN` / `--no-browser` | Don't open the browser automatically on startup |
58
+ | `-d` / `--debug` | Enable debug logging |
59
+
60
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
61
+
62
+ ## Still in Development
63
+
64
+ This project is actively being improved. Current work in progress includes:
65
+
66
+ - [ ] Multi-Language Support — UI currently German only, English and other languages planned
67
+ - [ ] More Extractors — additional video host support beyond the current providers
68
+ - [ ] Live Transcode / In-Browser Playback — watch downloaded files directly in the UI
69
+ - [ ] More Sources — additional anime, series and movie providers (open a feature request)
70
+ - [ ] AutoSync Episode Filter — configure per job which seasons/episodes to sync, skip specials/OVAs
71
+ - [ ] Provider Fallback Order — automatically try the next provider if the primary one fails
72
+ - [ ] Calendar View — show upcoming episode air dates for AutoSync jobs based on TMDB data
73
+ - [ ] Bandwidth Limit / Download Time Window — throttle speed or restrict downloads to specific hours
74
+ - [ ] Download History — searchable log of all completed downloads with date, size and duration
75
+ - [ ] Generic Outgoing Webhook — send a configurable POST request on download completion (Home Assistant, n8n, etc.)
76
+ - [ ] Subtitle Support — additional language and subtitle download options
77
+
78
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
79
+
80
+ ## Features
81
+
82
+ ### Web Interface
83
+ - **Browse & Search** – Explore and search titles from AniWorld, SerienStream and FilmPalast in a modern UI
84
+ - **Download Queue** – Manage active, queued, and completed downloads in real time
85
+ - **Media Library** – Browse your downloaded files in a built-in file explorer with series/season/episode tree view
86
+ - **Favourites** – Bookmark series and access them quickly from a dedicated page
87
+ - **AutoSync** – Automatically check for new episodes and download them on a schedule; import/export sync jobs as JSON
88
+ - **Statistics** – View detailed download activity: total episodes, storage used, and more
89
+ - **Encoding Settings** – Configure FFmpeg encoding mode (Stream Copy, H.264, H.265/HEVC) with hardware acceleration support (NVENC, VAAPI, VideoToolbox) and quality presets
90
+ - **Push Notifications** – Get notified on completed downloads via **Web Push**, **Telegram**, **Pushover**, **Discord**, or **WhatsApp**
91
+ - **CineInfo** – Enrich series cards and detail views with **TMDB** metadata: streaming providers, FSK age ratings, genres, and audience scores
92
+ - **Jellyfin / Plex Integration** – Automatically trigger a library refresh after each download
93
+ - **Seerr Integration** – Connect to **Jellyseerr** or **Overseerr** to view and process pending media requests directly in the UI
94
+ - **Settings** – All configuration is done through the WebUI — no `.env` file needed. Settings are organized in tabs: General, Downloads, Auto-Sync, Network, Authentication, API, and Updates
95
+ - **Authentication & SSO** – Always-on local authentication with multi-user support and roles; optional OIDC Single Sign-On (Keycloak, Authentik, Google, etc.) configurable entirely from the UI
96
+ - **Network Exposure** – Binds to `0.0.0.0` by default for LAN/Docker access
97
+ - **API** – Full REST API for programmatic access to all download and queue features
98
+ - **Docker Ready** – Deploy easily using **Docker** or **Docker Compose**
99
+ - **Anime Upscaling** – Upscaling Animes out of the box with **Anime4K**
100
+
101
+ ### Core Download Engine
102
+ - **Downloading** – Grab full series, individual seasons, or single episodes for offline viewing
103
+ - **Multiple Providers** – Stream from various sources on **aniworld.to**, **s.to** and **filmpalast.to**
104
+ - **Language Preferences** – Switch between **German Dub**, **English Sub**, or **German Sub**
105
+ - **Muxing** – Automatically combine video and audio streams into a single file
106
+
107
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
108
+
109
+ ## Supported Site Providers
110
+
111
+ These are the websites you can pass URLs from:
112
+
113
+ | Site | URL | Status | Notes |
114
+ | --- | --- | --- | --- |
115
+ | AniWorld | aniworld.to | ✅ Working | Anime, German dub & sub |
116
+ | SerienStream | s.to | ✅ Working | Series, German dub & sub |
117
+ | FilmPalast | filmpalast.to | ✅ Working | Movies only |
118
+
119
+ ## Supported Video Extractors
120
+
121
+ These are the video hosters used behind the scenes to deliver the stream:
122
+
123
+ | Extractor | Status | Last Tested |
124
+ | --- | --- | --- |
125
+ | VOE | ✅ Working | 04/26 |
126
+ | Vidoza | ✅ Working | 04/26 |
127
+ | Vidmoly | ✅ Working | 04/26 |
128
+ | Filemoon | ✅ Working | 04/26 |
129
+ | Doodstream | ✅ Working | 04/26 |
130
+ | Vidara | ✅ Working | 04/26 |
131
+ | Vidsonic | ⏳ Not Implemented | — |
132
+ | Upbolt | ⏳ Not Implemented | — |
133
+ | Streamtape | ⏳ Not Implemented | — |
134
+ | LoadX | ⏳ Not Implemented | — |
135
+ | Luluvdo | ⏳ Not Implemented | — |
136
+
137
+ ### Currently Prioritized Extractors per Site
138
+
139
+ - **AniWorld** – VOE, Filemoon, Vidmoly
140
+ - **SerienStream** – VOE, Vidoza
141
+ - **FilmPalast** – VOE (soon Vidara and Vidsonic)
142
+
143
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
144
+
145
+ ## Docker
146
+
147
+ Build the AniWorld Downloader Docker image:
148
+
149
+ ```bash
150
+ docker build -t aniworld .
151
+ ```
152
+
153
+ ### Running the Container
154
+
155
+ - **macOS / Linux (bash/zsh):**
156
+
157
+ ```bash
158
+ docker run -it --rm \
159
+ -p 8080:8080 \
160
+ -v "${PWD}/Downloads:/app/Downloads" \
161
+ aniworld
162
+ ```
163
+
164
+ - **Windows (PowerShell):**
165
+
166
+ ```powershell
167
+ docker run -it --rm `
168
+ -p 8080:8080 `
169
+ -v "${PWD}\Downloads:/app/Downloads" `
170
+ aniworld
171
+ ```
172
+
173
+ > **Note:**
174
+ > Mount your local `Downloads` folder to `/app/Downloads` in the container to save downloaded episodes. The WebUI is available at `http://localhost:8080`.
175
+
176
+ ### Docker Compose (with Web UI)
177
+
178
+ Start AniWorld Downloader using Docker Compose:
179
+
180
+ ```bash
181
+ docker-compose up -d --build
182
+ ```
183
+
184
+ This command will:
185
+
186
+ - **Build the Docker image** if it hasn't been built yet
187
+ - **Start the container** in detached mode (`-d`)
188
+ - Launch the **WebUI** automatically
189
+ - Automatically **restart the container unless stopped manually** (`restart: unless-stopped`)
190
+
191
+ To stop the container:
192
+
193
+ ```bash
194
+ docker-compose down
195
+ ```
196
+
197
+ > All settings (language, provider, SSO, reverse proxy URL, etc.) are configured via the WebUI after first launch — no `.env` file or environment variables required. See `docker-compose.yaml` for optional automation via environment variables (e.g. pre-creating an admin account).
198
+
199
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
200
+
201
+ ## Contributing
202
+
203
+ Contributions to MRX-AniWorld Downloader are **highly appreciated**! You can help improve the project in several ways:
204
+
205
+ - **Report Bugs** – Identify and report issues to improve functionality
206
+ - **Suggest Features** – Share ideas to expand the tool's capabilities
207
+ - **Submit Pull Requests** – Contribute code to fix bugs or add new features
208
+ - **Improve Documentation** – Help enhance user guides, tutorials, and technical documentation
209
+
210
+ Before submitting contributions, please check the repository for existing issues or feature requests to avoid duplicates. You're also welcome to discuss ideas on our [Discord](https://discord.gg/TGaZ9hFFhC) before opening a PR.
211
+
212
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
213
+
214
+ ## Credits
215
+
216
+ MRX-AniWorld Downloader builds upon the work of several outstanding open-source projects and individuals:
217
+
218
+ ### Original Authors
219
+ - **[phoenixthrush](https://github.com/phoenixthrush)** – Original creator of [AniWorld-Downloader](https://github.com/phoenixthrush/AniWorld-Downloader)
220
+ - **[SiroxCW](https://github.com/SiroxCW)** – Core contributor to the original codebase
221
+ - **[Tmaster055](https://github.com/Tmaster055)** – Core contributor to the original codebase
222
+
223
+ ### Libraries & Tools
224
+ - **[mpv](https://github.com/mpv-player/mpv.git)** – A versatile media player used for seamless video streaming
225
+ - **[Flask](https://flask.palletsprojects.com/)** – Web framework powering the WebUI
226
+ - **[Waitress](https://docs.pylonsproject.org/projects/waitress/)** – Production WSGI server
227
+
228
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
229
+
230
+ ## Other Cool Projects
231
+
232
+ - **[Jellyfin AniWorld Downloader](https://github.com/SiroxCW/Jellyfin-AniWorld-Downloader)** by **[SiroxCW](https://github.com/SiroxCW)** – A Jellyfin plugin that lets you browse and download anime & series directly from AniWorld, fully integrated into your media server.
233
+
234
+ - **[AniBridge](https://github.com/Zzackllack/AniBridge)** by **[Zzackllack](https://github.com/Zzackllack)** – A minimal FastAPI service that bridges anime and series streaming catalogues (AniWorld, SerienStream/s.to, MegaKino) with automation tools.
235
+
236
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
237
+
238
+ ## Support
239
+
240
+ If you need help with MRX-AniWorld Downloader, you have several options:
241
+
242
+ - **Join the [Discord Server](https://discord.gg/TGaZ9hFFhC)** – the fastest way to get help, ask questions, and chat with other users
243
+ - **Submit an issue** on the [GitHub Issues](https://github.com/TheMRX13/MRX-AniWorld-Downloader/issues) page – preferred for installation problems, bug reports, or feature requests, as it helps others benefit from shared solutions
244
+
245
+ If you find MRX-AniWorld Downloader useful, please star the repository on GitHub. Your support is greatly appreciated and motivates continued development.
246
+
247
+ Thank you for using MRX-AniWorld Downloader!
248
+
249
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
250
+
251
+ ## Legal Disclaimer
252
+
253
+ MRX-AniWorld Downloader is a **client-side** tool that enables access to content hosted on third-party websites. It **does not host, upload, store, or distribute any media itself**.
254
+
255
+ This software is **not intended to promote piracy or copyright infringement**. You are solely responsible for how you use MRX-AniWorld Downloader and for ensuring that your use **complies with applicable laws** and the **terms of service of the websites you access**.
256
+
257
+ The developer provides this project **"as is"** and is **not responsible for**:
258
+
259
+ - Third-party content
260
+ - External links
261
+ - The availability, accuracy, legality, or reliability of any third-party service
262
+
263
+ If you have concerns about specific content, **contact the relevant website owner, administrator, or hosting provider**.
264
+
265
+ <p align="right">(<a href="#readme-top">back to top</a>)</p>
266
+
267
+ ## License
268
+
269
+ This project is licensed under the **[MIT License](LICENSE)**.
270
+ For full terms and conditions, please see the LICENSE file included with this project.
@@ -0,0 +1,61 @@
1
+ [project]
2
+ name = "mrx-aniworld"
3
+ version = "2.1.9"
4
+ authors = [
5
+ { name = "TheMRX13 (Pascal Keller)", email = "keller.pascal1313@gmail.com" },
6
+ { name = "Domekologe", email = "placeholder@example.com" },
7
+ ]
8
+ description = "MRX-AniWorld-Downloader is a WebUI-only tool for downloading anime and series from AniWorld, SerienStream and FilmPalast. The CLI has been removed — start with 'aniworld' to launch the web interface directly."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ dependencies = [
12
+ "niquests",
13
+ "ffmpeg-python",
14
+ "yt-dlp",
15
+ "python-dotenv",
16
+ "rich",
17
+ "fake-useragent",
18
+ "flask",
19
+ "flask-wtf",
20
+ "flask-limiter",
21
+ "authlib",
22
+ "requests",
23
+ "waitress",
24
+ "packaging",
25
+ "cryptography",
26
+ "patchright",
27
+ "pywebpush",
28
+ "watchdog",
29
+ "dnspython",
30
+ ]
31
+
32
+ classifiers = [
33
+ "Programming Language :: Python :: 3",
34
+ "Operating System :: OS Independent",
35
+ ]
36
+ license = "MIT"
37
+ license-files = ["LICENSE"]
38
+
39
+ [project.urls]
40
+ homepage = "https://github.com/TheMRX13/MRX-AniWorld-Downloader"
41
+ changelog = "https://github.com/TheMRX13/MRX-AniWorld-Downloader/commits/models"
42
+ documentation = "https://readthedocs.org"
43
+ bugs = "https://github.com/TheMRX13/MRX-AniWorld-Downloader/issues"
44
+ issues = "https://github.com/TheMRX13/MRX-AniWorld-Downloader/issues"
45
+ tracker = "https://github.com/TheMRX13/MRX-AniWorld-Downloader/issues"
46
+
47
+ [tool.setuptools.package-data]
48
+ aniworld = [
49
+ "web/templates/*.html",
50
+ "web/static/*.css",
51
+ "web/static/*.js",
52
+ "web/static/*.json",
53
+ "web/static/*.svg",
54
+ "web/static/*.png",
55
+ "web/static/flags/*.svg",
56
+ "bin/windows/*",
57
+ "anime4k/shader/*.glsl",
58
+ ]
59
+
60
+ [project.scripts]
61
+ aniworld = "aniworld.__main__:main"