animloid 2.7.0__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 (80) hide show
  1. animloid-2.7.0/LICENSE +393 -0
  2. animloid-2.7.0/PKG-INFO +212 -0
  3. animloid-2.7.0/README.md +179 -0
  4. animloid-2.7.0/animloid.egg-info/PKG-INFO +212 -0
  5. animloid-2.7.0/animloid.egg-info/SOURCES.txt +78 -0
  6. animloid-2.7.0/animloid.egg-info/dependency_links.txt +1 -0
  7. animloid-2.7.0/animloid.egg-info/entry_points.txt +2 -0
  8. animloid-2.7.0/animloid.egg-info/requires.txt +17 -0
  9. animloid-2.7.0/animloid.egg-info/top_level.txt +2 -0
  10. animloid-2.7.0/pyproject.toml +50 -0
  11. animloid-2.7.0/setup.cfg +4 -0
  12. animloid-2.7.0/setup.py +19 -0
  13. animloid-2.7.0/tests/test_cache.py +90 -0
  14. animloid-2.7.0/tests/test_exceptions.py +45 -0
  15. animloid-2.7.0/tests/test_sanitizer.py +69 -0
  16. animloid-2.7.0/weeb_app_entry.py +39 -0
  17. animloid-2.7.0/weeb_cli/__init__.py +1 -0
  18. animloid-2.7.0/weeb_cli/__main__.py +4 -0
  19. animloid-2.7.0/weeb_cli/commands/downloads.py +553 -0
  20. animloid-2.7.0/weeb_cli/commands/search.py +551 -0
  21. animloid-2.7.0/weeb_cli/commands/settings.py +863 -0
  22. animloid-2.7.0/weeb_cli/commands/setup.py +26 -0
  23. animloid-2.7.0/weeb_cli/commands/watchlist.py +152 -0
  24. animloid-2.7.0/weeb_cli/config.py +53 -0
  25. animloid-2.7.0/weeb_cli/exceptions.py +44 -0
  26. animloid-2.7.0/weeb_cli/gui/__init__.py +6 -0
  27. animloid-2.7.0/weeb_cli/gui/app.py +213 -0
  28. animloid-2.7.0/weeb_cli/gui/styles.py +408 -0
  29. animloid-2.7.0/weeb_cli/gui/views/__init__.py +2 -0
  30. animloid-2.7.0/weeb_cli/gui/views/detail_view.py +407 -0
  31. animloid-2.7.0/weeb_cli/gui/views/downloads_view.py +192 -0
  32. animloid-2.7.0/weeb_cli/gui/views/history_view.py +209 -0
  33. animloid-2.7.0/weeb_cli/gui/views/search_view.py +283 -0
  34. animloid-2.7.0/weeb_cli/gui/views/settings_view.py +294 -0
  35. animloid-2.7.0/weeb_cli/gui/workers.py +215 -0
  36. animloid-2.7.0/weeb_cli/i18n.py +65 -0
  37. animloid-2.7.0/weeb_cli/locales/en.json +289 -0
  38. animloid-2.7.0/weeb_cli/locales/tr.json +289 -0
  39. animloid-2.7.0/weeb_cli/main.py +107 -0
  40. animloid-2.7.0/weeb_cli/providers/__init__.py +23 -0
  41. animloid-2.7.0/weeb_cli/providers/allanime.py +306 -0
  42. animloid-2.7.0/weeb_cli/providers/animecix.py +287 -0
  43. animloid-2.7.0/weeb_cli/providers/anizle.py +446 -0
  44. animloid-2.7.0/weeb_cli/providers/base.py +92 -0
  45. animloid-2.7.0/weeb_cli/providers/extractors/__init__.py +0 -0
  46. animloid-2.7.0/weeb_cli/providers/extractors/megacloud.py +238 -0
  47. animloid-2.7.0/weeb_cli/providers/hianime.py +308 -0
  48. animloid-2.7.0/weeb_cli/providers/registry.py +45 -0
  49. animloid-2.7.0/weeb_cli/providers/turkanime.py +513 -0
  50. animloid-2.7.0/weeb_cli/services/__init__.py +0 -0
  51. animloid-2.7.0/weeb_cli/services/_base.py +36 -0
  52. animloid-2.7.0/weeb_cli/services/_tracker_base.py +72 -0
  53. animloid-2.7.0/weeb_cli/services/cache.py +171 -0
  54. animloid-2.7.0/weeb_cli/services/database.py +361 -0
  55. animloid-2.7.0/weeb_cli/services/dependency_manager.py +328 -0
  56. animloid-2.7.0/weeb_cli/services/details.py +34 -0
  57. animloid-2.7.0/weeb_cli/services/discord_rpc.py +119 -0
  58. animloid-2.7.0/weeb_cli/services/downloader.py +481 -0
  59. animloid-2.7.0/weeb_cli/services/error_handler.py +0 -0
  60. animloid-2.7.0/weeb_cli/services/local_library.py +277 -0
  61. animloid-2.7.0/weeb_cli/services/logger.py +71 -0
  62. animloid-2.7.0/weeb_cli/services/notifier.py +92 -0
  63. animloid-2.7.0/weeb_cli/services/player.py +54 -0
  64. animloid-2.7.0/weeb_cli/services/progress.py +83 -0
  65. animloid-2.7.0/weeb_cli/services/scraper.py +104 -0
  66. animloid-2.7.0/weeb_cli/services/search.py +19 -0
  67. animloid-2.7.0/weeb_cli/services/shortcuts.py +52 -0
  68. animloid-2.7.0/weeb_cli/services/tracker.py +600 -0
  69. animloid-2.7.0/weeb_cli/services/updater.py +207 -0
  70. animloid-2.7.0/weeb_cli/services/watch.py +28 -0
  71. animloid-2.7.0/weeb_cli/templates/anilist_error.html +33 -0
  72. animloid-2.7.0/weeb_cli/templates/anilist_success.html +53 -0
  73. animloid-2.7.0/weeb_cli/templates/mal_error.html +34 -0
  74. animloid-2.7.0/weeb_cli/templates/mal_success.html +36 -0
  75. animloid-2.7.0/weeb_cli/ui/__init__.py +1 -0
  76. animloid-2.7.0/weeb_cli/ui/header.py +30 -0
  77. animloid-2.7.0/weeb_cli/ui/menu.py +181 -0
  78. animloid-2.7.0/weeb_cli/ui/prompt.py +120 -0
  79. animloid-2.7.0/weeb_cli/utils/__init__.py +4 -0
  80. animloid-2.7.0/weeb_cli/utils/sanitizer.py +79 -0
animloid-2.7.0/LICENSE ADDED
@@ -0,0 +1,393 @@
1
+ Copyright (c) 2024-2026 retak (AnimLoid)
2
+ SPDX-License-Identifier: CC-BY-NC-ND-4.0
3
+
4
+ Attribution-NonCommercial-NoDerivatives 4.0 International
5
+
6
+ =======================================================================
7
+
8
+ Creative Commons Corporation ("Creative Commons") is not a law firm and
9
+ does not provide legal services or legal advice. Distribution of
10
+ Creative Commons public licenses does not create a lawyer-client or
11
+ other relationship. Creative Commons makes its licenses and related
12
+ information available on an "as-is" basis. Creative Commons gives no
13
+ warranties regarding its licenses, any material licensed under their
14
+ terms and conditions, or any related information. Creative Commons
15
+ disclaims all liability for damages resulting from their use to the
16
+ fullest extent possible.
17
+
18
+ Using Creative Commons Public Licenses
19
+
20
+ Creative Commons public licenses provide a standard set of terms and
21
+ conditions that creators and other rights holders may use to share
22
+ original works of authorship and other material subject to copyright
23
+ and certain other rights. The following considerations are for
24
+ informational purposes only, are not exhaustive, and do not form part
25
+ of our licenses.
26
+
27
+ Considerations for licensors: Our public licenses are
28
+ intended for use by those authorized to give the public
29
+ permission to use material in ways otherwise restricted by
30
+ copyright and certain other rights. Our licenses are
31
+ irrevocable. Licensors should read and understand the terms
32
+ and conditions of the license they choose before applying it.
33
+ Licensors should also secure all rights necessary before
34
+ applying our licenses so that the public can reuse the
35
+ material as expected. Licensors should clearly mark any
36
+ material not subject to the license. This includes other CC-
37
+ licensed material, material used under an exception or
38
+ limitation to copyright, and material owned by other parties.
39
+
40
+ Considerations for the public: By using one of our public
41
+ licenses, a licensor grants the public permission to use the
42
+ licensed material under specified terms and conditions. If
43
+ the licensor's permission is not necessary for any reason--for
44
+ example, because of any applicable exception or limitation to
45
+ copyright--then that use is not regulated by the license.
46
+ Our licenses grant only permissions under copyright and
47
+ certain other rights that a licensor has the authority to
48
+ grant. Use of the licensed material may still be restricted
49
+ for other reasons, including because others have copyright
50
+ or other rights in the material. A licensor may make special
51
+ requests, such as asking that all changes be marked or
52
+ described. Although not required by our licenses, you are
53
+ encouraged to respect those requests where reasonable.
54
+
55
+ =======================================================================
56
+
57
+ Creative Commons Attribution-NonCommercial-NoDerivs 4.0 International
58
+ Public License
59
+
60
+ By exercising the Licensed Rights (defined below), You accept and agree
61
+ to be bound by the terms and conditions of this Creative Commons
62
+ Attribution-NonCommercial-NoDerivatives 4.0 International Public
63
+ License ("Public License"). To the extent this Public License may be
64
+ interpreted as a contract, You are granted the Licensed Rights in
65
+ consideration of Your acceptance of these terms and conditions, and the
66
+ Licensor grants You such rights in consideration of benefits the
67
+ Licensor receives from making the Licensed Material available under
68
+ these terms and conditions.
69
+
70
+ Section 1 -- Definitions.
71
+
72
+ a. Adapted Material means material subject to Copyright and Similar
73
+ Rights that is derived from or based upon the Licensed Material
74
+ and in which the Licensed Material is translated, altered,
75
+ arranged, transformed, or otherwise modified in a manner requiring
76
+ permission under the Copyright and Similar Rights held by the
77
+ Licensor. For purposes of this Public License, where the Licensed
78
+ Material is a musical work, performance, or sound recording,
79
+ Adapted Material is always produced where the Licensed Material is
80
+ synched in timed relation with a moving image.
81
+
82
+ b. Copyright and Similar Rights means copyright and/or similar rights
83
+ closely related to copyright including, without limitation,
84
+ performance, broadcast, sound recording, and Sui Generis Database
85
+ Rights, without regard to how the rights are labeled or
86
+ categorized. For purposes of this Public License, the rights
87
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
88
+ Rights.
89
+
90
+ c. Effective Technological Measures means those measures that, in the
91
+ absence of proper authority, may not be circumvented under laws
92
+ fulfilling obligations under Article 11 of the WIPO Copyright
93
+ Treaty adopted on December 20, 1996, and/or similar international
94
+ agreements.
95
+
96
+ d. Exceptions and Limitations means fair use, fair dealing, and/or
97
+ any other exception or limitation to Copyright and Similar Rights
98
+ that applies to Your use of the Licensed Material.
99
+
100
+ e. Licensed Material means the artistic or literary work, database,
101
+ or other material to which the Licensor applied this Public
102
+ License.
103
+
104
+ f. Licensed Rights means the rights granted to You subject to the
105
+ terms and conditions of this Public License, which are limited to
106
+ all Copyright and Similar Rights that apply to Your use of the
107
+ Licensed Material and that the Licensor has authority to license.
108
+
109
+ g. Licensor means the individual(s) or entity(ies) granting rights
110
+ under this Public License.
111
+
112
+ h. NonCommercial means not primarily intended for or directed towards
113
+ commercial advantage or monetary compensation. For purposes of
114
+ this Public License, the exchange of the Licensed Material for
115
+ other material subject to Copyright and Similar Rights by digital
116
+ file-sharing or similar means is NonCommercial provided there is
117
+ no payment of monetary compensation in connection with the
118
+ exchange.
119
+
120
+ i. Share means to provide material to the public by any means or
121
+ process that requires permission under the Licensed Rights, such
122
+ as reproduction, public display, public performance, distribution,
123
+ dissemination, communication, or importation, and to make material
124
+ available to the public including in ways that members of the
125
+ public may access the material from a place and at a time
126
+ individually chosen by them.
127
+
128
+ j. Sui Generis Database Rights means rights other than copyright
129
+ resulting from Directive 96/9/EC of the European Parliament and of
130
+ the Council of 11 March 1996 on the legal protection of databases,
131
+ as amended and/or succeeded, as well as other essentially
132
+ equivalent rights anywhere in the world.
133
+
134
+ k. You means the individual or entity exercising the Licensed Rights
135
+ under this Public License. Your has a corresponding meaning.
136
+
137
+ Section 2 -- Scope.
138
+
139
+ a. License grant.
140
+
141
+ 1. Subject to the terms and conditions of this Public License,
142
+ the Licensor hereby grants You a worldwide, royalty-free,
143
+ non-sublicensable, non-exclusive, irrevocable license to
144
+ exercise the Licensed Rights in the Licensed Material to:
145
+
146
+ A. reproduce and Share the Licensed Material, in whole or
147
+ in part, for NonCommercial purposes only; and
148
+
149
+ B. produce and reproduce, but not Share, Adapted Material
150
+ for NonCommercial purposes only.
151
+
152
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
153
+ Exceptions and Limitations apply to Your use, this Public
154
+ License does not apply, and You do not need to comply with
155
+ its terms and conditions.
156
+
157
+ 3. Term. The term of this Public License is specified in Section
158
+ 6(a).
159
+
160
+ 4. Media and formats; technical modifications allowed. The
161
+ Licensor authorizes You to exercise the Licensed Rights in
162
+ all media and formats whether now known or hereafter created,
163
+ and to make technical modifications necessary to do so. The
164
+ Licensor waives and/or agrees not to assert any right or
165
+ authority to forbid You from making technical modifications
166
+ necessary to exercise the Licensed Rights, including
167
+ technical modifications necessary to circumvent Effective
168
+ Technological Measures. For purposes of this Public License,
169
+ simply making modifications authorized by this Section 2(a)
170
+ (4) never produces Adapted Material.
171
+
172
+ 5. Downstream recipients.
173
+
174
+ A. Offer from the Licensor -- Licensed Material. Every
175
+ recipient of the Licensed Material automatically
176
+ receives an offer from the Licensor to exercise the
177
+ Licensed Rights under the terms and conditions of this
178
+ Public License.
179
+
180
+ B. No downstream restrictions. You may not offer or impose
181
+ any additional or different terms or conditions on, or
182
+ apply any Effective Technological Measures to, the
183
+ Licensed Material if doing so restricts exercise of the
184
+ Licensed Rights by any recipient of the Licensed
185
+ Material.
186
+
187
+ 6. No endorsement. Nothing in this Public License constitutes or
188
+ may be construed as permission to assert or imply that You
189
+ are, or that Your use of the Licensed Material is, connected
190
+ with, or sponsored, endorsed, or granted official status by,
191
+ the Licensor or others designated to receive attribution as
192
+ provided in Section 3(a)(1)(A)(i).
193
+
194
+ b. Other rights.
195
+
196
+ 1. Moral rights, such as the right of integrity, are not
197
+ licensed under this Public License, nor are publicity,
198
+ privacy, and/or other similar personality rights; however, to
199
+ the extent possible, the Licensor waives and/or agrees not to
200
+ assert any such rights held by the Licensor to the limited
201
+ extent necessary to allow You to exercise the Licensed
202
+ Rights, but not otherwise.
203
+
204
+ 2. Patent and trademark rights are not licensed under this
205
+ Public License.
206
+
207
+ 3. To the extent possible, the Licensor waives any right to
208
+ collect royalties from You for the exercise of the Licensed
209
+ Rights, whether directly or through a collecting society
210
+ under any voluntary or waivable statutory or compulsory
211
+ licensing scheme. In all other cases the Licensor expressly
212
+ reserves any right to collect such royalties, including when
213
+ the Licensed Material is used other than for NonCommercial
214
+ purposes.
215
+
216
+ Section 3 -- License Conditions.
217
+
218
+ Your exercise of the Licensed Rights is expressly made subject to the
219
+ following conditions.
220
+
221
+ a. Attribution.
222
+
223
+ 1. If You Share the Licensed Material (including in modified
224
+ form), You must:
225
+
226
+ A. retain the following if it is supplied by the Licensor
227
+ with the Licensed Material:
228
+
229
+ i. identification of the creator(s) of the Licensed
230
+ Material and any others designated to receive
231
+ attribution, in any reasonable manner requested by
232
+ the Licensor (including by pseudonym if designated);
233
+
234
+ ii. a copyright notice;
235
+
236
+ iii. a notice that refers to this Public License;
237
+
238
+ iv. a notice that refers to the disclaimer of warranties;
239
+
240
+ v. a URI or hyperlink to the Licensed Material to the
241
+ extent reasonably practicable;
242
+
243
+ B. indicate if You modified the Licensed Material and retain
244
+ an indication of any previous modifications; and
245
+
246
+ C. indicate the Licensed Material is licensed under this
247
+ Public License, and include the text of, or the URI or
248
+ hyperlink to, this Public License.
249
+
250
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
251
+ reasonable manner based on the medium, means, and context in
252
+ which You Share the Licensed Material. For example, it may be
253
+ reasonable to satisfy the conditions by providing a URI or
254
+ hyperlink to a resource that includes the required information.
255
+
256
+ 3. If requested by the Licensor, You must remove any of the
257
+ information required by Section 3(a)(1)(A) to the extent
258
+ reasonably practicable.
259
+
260
+ 4. If You Share Adapted Material You produce, the Adapter's
261
+ License You apply must not prevent recipients of the Adapted
262
+ Material from complying with this Public License.
263
+
264
+ Section 4 -- Sui Generis Database Rights.
265
+
266
+ Where the Licensed Rights include Sui Generis Database Rights that
267
+ apply to Your use of the Licensed Material:
268
+
269
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
270
+ to extract, reuse, reproduce, and Share all or a substantial
271
+ portion of the contents of the database for NonCommercial purposes
272
+ only;
273
+
274
+ b. if You include all or a substantial portion of the database
275
+ contents in a database in which You have Sui Generis Database
276
+ Rights, then the database in which You have Sui Generis Database
277
+ Rights (but not its individual contents) is Adapted Material; and
278
+
279
+ c. You must comply with the conditions in Section 3(a) if You Share
280
+ all or a substantial portion of the contents of the database.
281
+
282
+ For the avoidance of doubt, this Section 4 supplements and does not
283
+ replace Your obligations under this Public License where the Licensed
284
+ Rights and Copyright and Similar Rights apply to Your use of the
285
+ Licensed Material.
286
+
287
+ Section 5 -- Disclaimer of Warranties and Limitation of Liability.
288
+
289
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
290
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
291
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
292
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
293
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
294
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
295
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
296
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
297
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
298
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
299
+
300
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
301
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
302
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
303
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
304
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
305
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
306
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
307
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
308
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
309
+
310
+ c. The disclaimer of warranties and limitation of liability provided
311
+ above shall be interpreted in a manner that, to the extent
312
+ possible, most closely approximates an absolute disclaimer and
313
+ waiver of all liability.
314
+
315
+ Section 6 -- Term and Termination.
316
+
317
+ a. This Public License applies for the term of the Copyright and
318
+ Similar Rights licensed here. However, if You fail to comply with
319
+ this Public License, then Your rights under this Public License
320
+ terminate automatically.
321
+
322
+ b. Where Your right to use the Licensed Material has terminated under
323
+ Section 6(a), it reinstates:
324
+
325
+ 1. automatically as of the date the violation is cured, provided
326
+ it is cured within 30 days of Your discovery of the
327
+ violation; or
328
+
329
+ 2. upon express reinstatement by the Licensor.
330
+
331
+ For the avoidance of doubt, this Section 6(b) does not affect any
332
+ right the Licensor may have to seek remedies for Your violations
333
+ of this Public License.
334
+
335
+ c. For the avoidance of doubt, the Licensor may also offer the
336
+ Licensed Material under separate terms or conditions or stop
337
+ distributing the Licensed Material at any time; however, doing so
338
+ will not terminate this Public License.
339
+
340
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
341
+ License.
342
+
343
+ Section 7 -- Other Terms and Conditions.
344
+
345
+ a. The Licensor shall not be bound by any additional or different
346
+ terms or conditions communicated by You unless expressly agreed.
347
+
348
+ b. Any arrangements, understandings, or agreements regarding the
349
+ Licensed Material not stated herein are separate from and
350
+ independent of the terms and conditions of this Public License.
351
+
352
+ Section 8 -- Interpretation.
353
+
354
+ a. For the avoidance of doubt, this Public License does not, and
355
+ shall not be interpreted to, reduce, limit, restrict, or impose
356
+ conditions on any use of the Licensed Material that could lawfully
357
+ be made without permission under this Public License.
358
+
359
+ b. To the extent possible, if any provision of this Public License is
360
+ deemed unenforceable, it shall be automatically reformed to the
361
+ minimum extent necessary to make it enforceable. If the provision
362
+ cannot be reformed, it shall be severed from this Public License
363
+ without affecting the enforceability of the remaining terms and
364
+ conditions.
365
+
366
+ c. No term or condition of this Public License will be waived and no
367
+ failure to comply consented to unless expressly agreed to by the
368
+ Licensor.
369
+
370
+ d. Nothing in this Public License constitutes or may be interpreted
371
+ as a limitation upon or waiver of any privileges and immunities
372
+ that apply to the Licensor or You, including from the legal
373
+ processes of any jurisdiction or authority.
374
+
375
+ =======================================================================
376
+
377
+ Creative Commons is not a party to its public licenses. Notwithstanding,
378
+ Creative Commons may elect to apply one of its public licenses to
379
+ material it publishes and in those instances will be considered the
380
+ "Licensor." The text of the Creative Commons public licenses is
381
+ dedicated to the public domain under the CC0 Public Domain Dedication.
382
+ Except for the limited purpose of indicating that material is shared
383
+ under a Creative Commons public license or as otherwise permitted by
384
+ the Creative Commons policies published at creativecommons.org/policies,
385
+ Creative Commons does not authorize the use of the trademark "Creative
386
+ Commons" or any other trademark or logo of Creative Commons without its
387
+ prior written consent including, without limitation, in connection with
388
+ any unauthorized modifications to any of its public licenses or any
389
+ other arrangements, understandings, or agreements concerning use of
390
+ licensed material. For the avoidance of doubt, this paragraph does not
391
+ form part of the public licenses.
392
+
393
+ Creative Commons may be contacted at creativecommons.org.
@@ -0,0 +1,212 @@
1
+ Metadata-Version: 2.4
2
+ Name: animloid
3
+ Version: 2.7.0
4
+ Summary: Tarayıcı yok, reklam yok, dikkat dağıtıcı unsur yok. Sadece siz ve eşsiz bir anime izleme deneyimi.
5
+ Author-email: RetakJunior <retakjunior@users.noreply.github.com>
6
+ License-Expression: CC-BY-NC-ND-4.0
7
+ Project-URL: Homepage, https://github.com/RetakJunior/AnimLoid
8
+ Project-URL: Repository, https://github.com/RetakJunior/AnimLoid
9
+ Project-URL: Issues, https://github.com/RetakJunior/AnimLoid/issues
10
+ Keywords: anime,animloid,anime-download,anime-watch,anime-watching,anime-downloading,anime-cli,allanime,animecix,anime-indir,anime-izle,anime-izleme,anime-indirme,tranime
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Environment :: Console
14
+ Requires-Python: >=3.8
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Requires-Dist: typer[all]
18
+ Requires-Dist: rich
19
+ Requires-Dist: questionary
20
+ Requires-Dist: requests
21
+ Requires-Dist: packaging
22
+ Requires-Dist: beautifulsoup4
23
+ Requires-Dist: lxml
24
+ Requires-Dist: pycryptodome
25
+ Requires-Dist: curl_cffi
26
+ Requires-Dist: appdirs
27
+ Requires-Dist: prompt_toolkit<3.0.50,>=3.0.36
28
+ Requires-Dist: pyfiglet
29
+ Requires-Dist: py7zr
30
+ Requires-Dist: pypresence
31
+ Requires-Dist: winotify; sys_platform == "win32"
32
+ Dynamic: license-file
33
+
34
+ <h1 align="center">AnimLoid</h1>
35
+
36
+ <p align="center">
37
+ <strong>Anime severler için güçlü, platformlar arası komut satırı aracı</strong>
38
+ </p>
39
+
40
+ <p align="center">
41
+ <a href="https://github.com/RetakJunior/AnimLoid/releases"><img src="https://img.shields.io/github/v/release/RetakJunior/AnimLoid?style=flat-square" alt="Release"></a>
42
+ <a href="https://github.com/RetakJunior/AnimLoid/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-CC%20BY--NC--ND%204.0-blue?style=flat-square" alt="License"></a>
43
+ <a href="https://github.com/RetakJunior/AnimLoid/stargazers"><img src="https://img.shields.io/github/stars/RetakJunior/AnimLoid?style=flat-square" alt="Stars"></a>
44
+ <a href="https://github.com/RetakJunior/AnimLoid/actions"><img src="https://img.shields.io/github/actions/workflow/status/RetakJunior/AnimLoid/tests.yml?style=flat-square" alt="Tests"></a>
45
+ </p>
46
+
47
+ <p align="center">
48
+ <a href="#kurulum">Kurulum</a> •
49
+ <a href="#özellikler">Özellikler</a> •
50
+ <a href="#kullanım">Kullanım</a> •
51
+ <a href="#kaynaklar">Kaynaklar</a> •
52
+ <a href="README-EN.md">English</a>
53
+ </p>
54
+
55
+ ---
56
+
57
+ ## Özellikler
58
+
59
+ ### Çoklu Kaynak Desteği
60
+ - **Türkçe**: Animecix, Turkanime, Anizle
61
+ - **İngilizce**: HiAnime, AllAnime
62
+
63
+ ### Akıllı İzleme
64
+ - MPV entegrasyonu ile yüksek kaliteli HLS/MP4 yayınları
65
+ - Kaldığınız yerden devam etme (dakika bazında)
66
+ - İzleme geçmişi ve istatistikler
67
+ - Tamamlanan (✓) ve devam eden (●) bölüm işaretleri
68
+
69
+ ### Güçlü İndirme Sistemi
70
+ - **Aria2** ile çoklu bağlantılı hızlı indirme
71
+ - **yt-dlp** ile karmaşık yayın desteği
72
+ - Kuyruk sistemi ve eşzamanlı indirme
73
+ - Yarım kalan indirmeleri devam ettirme
74
+ - Akıllı dosya isimlendirme (`Anime Adı - S1B1.mp4`)
75
+
76
+ ### Yerel Kütüphane
77
+ - İndirilen animeleri otomatik tarama
78
+ - Harici disk desteği (USB, HDD)
79
+ - Çevrimdışı anime indexleme
80
+ - Tüm kaynaklarda arama
81
+
82
+ ### Ek Özellikler
83
+ - SQLite veritabanı (hızlı ve güvenilir)
84
+ - İndirme tamamlandığında sistem bildirimi
85
+ - Discord RPC entegrasyonu (izlediğiniz anime Discord'da görünsün)
86
+ - Arama geçmişi
87
+ - Debug modu ve loglama
88
+ - Otomatik güncelleme kontrolü
89
+
90
+ ---
91
+
92
+ ## Kurulum
93
+
94
+ ### PyPI (Evrensel)
95
+ ```bash
96
+ pip install animloid
97
+ ```
98
+
99
+ ### Arch Linux (AUR)
100
+ ```bash
101
+ yay -S animloid
102
+ ```
103
+
104
+ ### Portable
105
+ [Releases](https://github.com/RetakJunior/AnimLoid/releases) sayfasından platformunuza uygun dosyayı indirin.
106
+
107
+ ### Geliştirici Kurulumu
108
+ ```bash
109
+ git clone https://github.com/RetakJunior/AnimLoid.git
110
+ cd AnimLoid
111
+ pip install -e .
112
+ ```
113
+
114
+ ---
115
+
116
+ ## Kullanım
117
+
118
+ ```bash
119
+ animloid
120
+ ```
121
+
122
+ ### Klavye Kontrolleri
123
+ | Tuş | İşlev |
124
+ |-----|-------|
125
+ | `↑` `↓` | Menüde gezinme |
126
+ | `Enter` | Seçim yapma |
127
+ | `s` | Anime Ara (Ana menüde) |
128
+ | `d` | İndirmeler (Ana menüde) |
129
+ | `w` | İzlediklerim (Ana menüde) |
130
+ | `c` | Ayarlar (Ana menüde) |
131
+ | `q` | Çıkış (Ana menüde) |
132
+ | `Ctrl+C` | Geri dön / Çıkış |
133
+
134
+ **Not:** Tüm kısayollar Ayarlar > Klavye Kısayolları menüsünden özelleştirilebilir.
135
+
136
+ ---
137
+
138
+ ## Kaynaklar
139
+
140
+ | Kaynak | Dil |
141
+ |--------|-----|
142
+ | Animecix | Türkçe |
143
+ | Turkanime | Türkçe |
144
+ | Anizle | Türkçe |
145
+ | HiAnime | İngilizce |
146
+ | AllAnime | İngilizce |
147
+
148
+ ---
149
+
150
+ ## Ayarlar
151
+
152
+ Yapılandırma: `~/.animloid/animloid.db` (SQLite)
153
+
154
+ | Ayar | Açıklama | Varsayılan |
155
+ |------|----------|------------|
156
+ | `aria2_enabled` | Aria2 kullanımı | `true` |
157
+ | `max_concurrent_downloads` | Eşzamanlı indirme | `3` |
158
+ | `download_dir` | İndirme klasörü | `./animloid-downloads` |
159
+ | `discord_rpc_enabled` | Discord RPC | `false` |
160
+ | `debug_mode` | Debug loglama | `false` |
161
+
162
+ ---
163
+
164
+ ## Yol Haritası
165
+
166
+ ### Tamamlanan
167
+ - [x] Çoklu kaynak desteği (TR/EN)
168
+ - [x] MPV ile izleme
169
+ - [x] İzleme geçmişi ve ilerleme takibi
170
+ - [x] Aria2/yt-dlp indirme entegrasyonu
171
+ - [x] Harici disk ve yerel kütüphane
172
+ - [x] SQLite veritabanı
173
+ - [x] Bildirim sistemi
174
+ - [x] Debug modu
175
+ - [x] MAL/AniList entegrasyonu
176
+ - [x] Veritabanı yedekleme/geri yükleme
177
+ - [x] Klavye kısayolları
178
+
179
+ ## Gelecek Planlar
180
+
181
+ ### v2.6.0 (Planlanan)
182
+ - [ ] Async/await refactoring
183
+ - [ ] Download strategy pattern
184
+ - [ ] Token şifreleme
185
+ - [ ] Progress bar iyileştirmesi
186
+ - [ ] Plugin sistemi
187
+
188
+ ### v2.7.0 (Planlanan)
189
+ - [ ] Anime önerileri
190
+ - [ ] Toplu işlemler
191
+ - [ ] İzleme istatistikleri (grafik)
192
+ - [ ] Tema desteği
193
+ - [ ] Altyazı indirme
194
+
195
+ ### v3.0.0 (Uzun Vadeli)
196
+ - [ ] Web UI (opsiyonel)
197
+ - [ ] Torrent desteği
198
+ - [ ] Watch party
199
+ - [ ] Mobile app entegrasyonu
200
+
201
+ ---
202
+
203
+ ## Lisans
204
+
205
+ Bu proje [CC BY-NC-ND 4.0](LICENSE) lisansı ile lisanslanmıştır.
206
+
207
+ ---
208
+
209
+ <p align="center">
210
+ <a href="https://weeb-cli.ewgsta.me">Website</a> •
211
+ <a href="https://github.com/RetakJunior/AnimLoid/issues">Sorun Bildir</a>
212
+ </p>