animloid 2.7.0__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.
- animloid-2.7.0.dist-info/METADATA +212 -0
- animloid-2.7.0.dist-info/RECORD +71 -0
- animloid-2.7.0.dist-info/WHEEL +5 -0
- animloid-2.7.0.dist-info/entry_points.txt +2 -0
- animloid-2.7.0.dist-info/licenses/LICENSE +393 -0
- animloid-2.7.0.dist-info/top_level.txt +2 -0
- weeb_app_entry.py +39 -0
- weeb_cli/__init__.py +1 -0
- weeb_cli/__main__.py +4 -0
- weeb_cli/commands/downloads.py +553 -0
- weeb_cli/commands/search.py +551 -0
- weeb_cli/commands/settings.py +863 -0
- weeb_cli/commands/setup.py +26 -0
- weeb_cli/commands/watchlist.py +152 -0
- weeb_cli/config.py +53 -0
- weeb_cli/exceptions.py +44 -0
- weeb_cli/gui/__init__.py +6 -0
- weeb_cli/gui/app.py +213 -0
- weeb_cli/gui/styles.py +408 -0
- weeb_cli/gui/views/__init__.py +2 -0
- weeb_cli/gui/views/detail_view.py +407 -0
- weeb_cli/gui/views/downloads_view.py +192 -0
- weeb_cli/gui/views/history_view.py +209 -0
- weeb_cli/gui/views/search_view.py +283 -0
- weeb_cli/gui/views/settings_view.py +294 -0
- weeb_cli/gui/workers.py +215 -0
- weeb_cli/i18n.py +65 -0
- weeb_cli/locales/en.json +289 -0
- weeb_cli/locales/tr.json +289 -0
- weeb_cli/main.py +107 -0
- weeb_cli/providers/__init__.py +23 -0
- weeb_cli/providers/allanime.py +306 -0
- weeb_cli/providers/animecix.py +287 -0
- weeb_cli/providers/anizle.py +446 -0
- weeb_cli/providers/base.py +92 -0
- weeb_cli/providers/extractors/__init__.py +0 -0
- weeb_cli/providers/extractors/megacloud.py +238 -0
- weeb_cli/providers/hianime.py +308 -0
- weeb_cli/providers/registry.py +45 -0
- weeb_cli/providers/turkanime.py +513 -0
- weeb_cli/services/__init__.py +0 -0
- weeb_cli/services/_base.py +36 -0
- weeb_cli/services/_tracker_base.py +72 -0
- weeb_cli/services/cache.py +171 -0
- weeb_cli/services/database.py +361 -0
- weeb_cli/services/dependency_manager.py +328 -0
- weeb_cli/services/details.py +34 -0
- weeb_cli/services/discord_rpc.py +119 -0
- weeb_cli/services/downloader.py +481 -0
- weeb_cli/services/error_handler.py +0 -0
- weeb_cli/services/local_library.py +277 -0
- weeb_cli/services/logger.py +71 -0
- weeb_cli/services/notifier.py +92 -0
- weeb_cli/services/player.py +54 -0
- weeb_cli/services/progress.py +83 -0
- weeb_cli/services/scraper.py +104 -0
- weeb_cli/services/search.py +19 -0
- weeb_cli/services/shortcuts.py +52 -0
- weeb_cli/services/tracker.py +600 -0
- weeb_cli/services/updater.py +207 -0
- weeb_cli/services/watch.py +28 -0
- weeb_cli/templates/anilist_error.html +33 -0
- weeb_cli/templates/anilist_success.html +53 -0
- weeb_cli/templates/mal_error.html +34 -0
- weeb_cli/templates/mal_success.html +36 -0
- weeb_cli/ui/__init__.py +1 -0
- weeb_cli/ui/header.py +30 -0
- weeb_cli/ui/menu.py +181 -0
- weeb_cli/ui/prompt.py +120 -0
- weeb_cli/utils/__init__.py +4 -0
- weeb_cli/utils/sanitizer.py +79 -0
|
@@ -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>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
weeb_app_entry.py,sha256=akgjJ9zP3p9gT-HVpB3cFjyZVcGdQNJcTglid5azvlE,1405
|
|
2
|
+
animloid-2.7.0.dist-info/licenses/LICENSE,sha256=3vz-w0bjqGRlociV3gEVU0UPWGL4tn_IpFx9ahBt8Z0,18985
|
|
3
|
+
weeb_cli/__init__.py,sha256=EtKWW0Hnl5oWglRNH0HZigvcDT2FEs58ek8buJdwW1E,22
|
|
4
|
+
weeb_cli/__main__.py,sha256=RCZmmoCNOWC7rAfIDm_LaymsybXIzE6McYbUEEkf9P8,60
|
|
5
|
+
weeb_cli/config.py,sha256=vNKZxbuzVGU31AaAWI0eHxrFjV7VTPH7ePdtBVUpsMs,1487
|
|
6
|
+
weeb_cli/exceptions.py,sha256=-apzVTBCpOuX6Qdx3ZhABtwc_k3_L9GB3cD1bqTeEDo,989
|
|
7
|
+
weeb_cli/i18n.py,sha256=2Oz94MmCYx4rzyB61swXTX64lNRnY4FgBMXoxPKalIs,1816
|
|
8
|
+
weeb_cli/main.py,sha256=jaiTdR1XFjbQYqLMuQGq_LdTjrJ4HPVYZ_tbLnIwNEk,3282
|
|
9
|
+
weeb_cli/commands/downloads.py,sha256=IKbylvI-oQEBz2RJ6JmQB4zLCcAhjyvk6Vw48iKEAgQ,20847
|
|
10
|
+
weeb_cli/commands/search.py,sha256=Ey6F8nYLqgSd6k4N-IUqp9hrcDHQYz4g2ApS3w1noRM,20085
|
|
11
|
+
weeb_cli/commands/settings.py,sha256=J3mYsUBCNpCliidD81RLgPpdr2a1B5Ah5Mxfm34QiuU,30647
|
|
12
|
+
weeb_cli/commands/setup.py,sha256=Lx6Iv4FEutk07TiYGKRdEqkFQ7pZpzqKkqAk4WraiG8,1016
|
|
13
|
+
weeb_cli/commands/watchlist.py,sha256=F5BZc9PW-N4giPyEZkAZiYdNYKE5whZ9I6ldfPhFdtQ,5399
|
|
14
|
+
weeb_cli/gui/__init__.py,sha256=pay_Vvn8nFVyXP4AHEcwHYokY2ZTSOsreojXdEHAsSk,117
|
|
15
|
+
weeb_cli/gui/app.py,sha256=REXFUJNK8H4FEHRirpJaxehEcMa9eBdSPYxIB6v8ivw,7318
|
|
16
|
+
weeb_cli/gui/styles.py,sha256=w0G0EBq-TLePdtSK5vrzhcOTqmjbq9f5FY45OXzAl-U,7573
|
|
17
|
+
weeb_cli/gui/workers.py,sha256=5MJxQOxKvn3MHBRnBcuRDJSuxzUxN3fxfNbKcoK-Q_g,7023
|
|
18
|
+
weeb_cli/gui/views/__init__.py,sha256=aEBKfXbvL3ps2GbLOrX3kOqh2vsziFQ5DEuYn5oQ9MM,25
|
|
19
|
+
weeb_cli/gui/views/detail_view.py,sha256=X2HAr5v2zPwyaBiyShQddLsG2A0dU9lcL2Iy14UCsqY,15855
|
|
20
|
+
weeb_cli/gui/views/downloads_view.py,sha256=xLm2sHjxy0uTGCxG2z5nkesjZFD0heWIGAsp11nWkH0,8154
|
|
21
|
+
weeb_cli/gui/views/history_view.py,sha256=i9Arn_Dkk_wPUK7nYDpkaBiSyDf9FGeH0tOXKTSWwyc,8071
|
|
22
|
+
weeb_cli/gui/views/search_view.py,sha256=uw2I0EHUEBzz4LH4J8Nl1GUVgN-pVxByhA6B82UBx-U,10794
|
|
23
|
+
weeb_cli/gui/views/settings_view.py,sha256=LN20NvXiPKUYgYPpvKfwJslD6dBuv9lSJNFNNpK-evU,12507
|
|
24
|
+
weeb_cli/locales/en.json,sha256=X3BB-xBjtaXxchBG42whBVZuUNaY3O4wAA48tLSSIJ8,12670
|
|
25
|
+
weeb_cli/locales/tr.json,sha256=Ljww4IU4p_0QzUAijyyMoJoOURrLe6OU_L7UaezlY_I,13646
|
|
26
|
+
weeb_cli/providers/__init__.py,sha256=0rOz-168j4VEmim7fg8y7mWMJtB6Td4qhKg09bVOeZI,566
|
|
27
|
+
weeb_cli/providers/allanime.py,sha256=0BvAvAS-bk6ZdDaV3iRbFjsCtGFBeSCNlzfbjDPiXQE,10058
|
|
28
|
+
weeb_cli/providers/animecix.py,sha256=MLNb8gMM6LH1JSYt1xo27sRgaYP8gaaC-0IKrcYEWCQ,9093
|
|
29
|
+
weeb_cli/providers/anizle.py,sha256=LHiCz2uVNGHweRPq158c3kVhtVnMLPGyn-WlUdq8XGA,15101
|
|
30
|
+
weeb_cli/providers/base.py,sha256=fnpVhgf7fU7hJX12oBcn8NbU-dv_CJ7nQ8xQ_SiYfgw,2326
|
|
31
|
+
weeb_cli/providers/hianime.py,sha256=xmBpS9iJEptSJuQIt_PIpTw7GHg7Kenl1Kq2AaAX4OQ,10986
|
|
32
|
+
weeb_cli/providers/registry.py,sha256=xRfYWOgOE6vtdWVA8uSqAFyy6T-Zw8dJIkJbUB1yO9k,1142
|
|
33
|
+
weeb_cli/providers/turkanime.py,sha256=BgXwkge97nGnMTYXN2Wz1QIEbBYoRzO2D40lPkFYTX8,16032
|
|
34
|
+
weeb_cli/providers/extractors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
weeb_cli/providers/extractors/megacloud.py,sha256=_PJKP2pzi6D1zieINLssjkv22OQSgbT7vo31-NaL36w,7329
|
|
36
|
+
weeb_cli/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
weeb_cli/services/_base.py,sha256=DYkxZQWwyJOIPgrr2wN5qN-hCFpuTrxeNn9F9sZiWO8,963
|
|
38
|
+
weeb_cli/services/_tracker_base.py,sha256=oNNZUgIWJAjpcZ6iFS-hicRfPvd_eBadJY7PuWgwUO8,2220
|
|
39
|
+
weeb_cli/services/cache.py,sha256=q6ZK7GMgG2MElOwqph-WlpWio9sM6mNkfsjzWRGq2DA,5044
|
|
40
|
+
weeb_cli/services/database.py,sha256=Ke4BTU7vyVx_5gZ7CFgH9v9Pw1C9W_96S_lqR2XnrNw,14190
|
|
41
|
+
weeb_cli/services/dependency_manager.py,sha256=4c08alC3avAq9r16AHqXKWeh8ZROI66gvMKMMAdwmBQ,13280
|
|
42
|
+
weeb_cli/services/details.py,sha256=l6ZUHXAntb0sRldUWMIkP3prhLvNq_mCRFHA0719WaA,986
|
|
43
|
+
weeb_cli/services/discord_rpc.py,sha256=vNpWdRo_16B-C5JylxdVJyV1xX7bF1TNHImMsL0DCiU,3651
|
|
44
|
+
weeb_cli/services/downloader.py,sha256=f5b9Q-mO321b7vr9E2mpdkuiREd1DKqlIkldPWTy1Ok,19110
|
|
45
|
+
weeb_cli/services/error_handler.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
+
weeb_cli/services/local_library.py,sha256=npmVa3tVnk5Gdaf-Q76f0ha4rZIc49DAgytXe7iRtJI,9380
|
|
47
|
+
weeb_cli/services/logger.py,sha256=t25NZhgo6CKEg42vTMqFdbeUq1KHFEmStcouXY85nJI,1754
|
|
48
|
+
weeb_cli/services/notifier.py,sha256=qs6kiYud1zhqWDl2CIijGhvCtsTVZFCfmc5I7r6wToE,2811
|
|
49
|
+
weeb_cli/services/player.py,sha256=pzW6Zev8A2yPJWxdLorgpbF5HcnyBjGcYjuub__gVA0,1799
|
|
50
|
+
weeb_cli/services/progress.py,sha256=7x2Jy_fTWswxvas4N668Etq1pAU2ykllDyB-lnfnYgA,2926
|
|
51
|
+
weeb_cli/services/scraper.py,sha256=s2VceFivdckFmLt-y9Ysng8IbdgOtCorVONiP6fvalo,3542
|
|
52
|
+
weeb_cli/services/search.py,sha256=GAlzMncWjO2vQKZXKi7yDzOAQLLRZZh7dPufPnk3D0U,411
|
|
53
|
+
weeb_cli/services/shortcuts.py,sha256=v7Uo35U5E6b5zJY_JyEXIOUmg_VUOEMMNqbaKDbYC48,1494
|
|
54
|
+
weeb_cli/services/tracker.py,sha256=lk0WNnQ0IZJ8shjoyHffTylPlF6GYPchvC6SYfHHhDw,19294
|
|
55
|
+
weeb_cli/services/updater.py,sha256=0VDMmCrRVg8VkXxdtmI88h1YWobf8EiW4F3W_Lii9B4,6867
|
|
56
|
+
weeb_cli/services/watch.py,sha256=AmtO8gXkxymGm1h5f3kdcaTYqvWw6_WNolec9oUuFn8,886
|
|
57
|
+
weeb_cli/templates/anilist_error.html,sha256=04jiKk72YGsO0iMAGchLcl5HjiLtUPdETBeLkpm_z3Y,1859
|
|
58
|
+
weeb_cli/templates/anilist_success.html,sha256=Ma9wiNqWdPPMvUc7e18lvYrLnbyoFqChAFZk8A9k4zU,3008
|
|
59
|
+
weeb_cli/templates/mal_error.html,sha256=9jZYR62o_-h6tnJsIPJbnlTnoLn508Ckl9kdY8VcQiA,2004
|
|
60
|
+
weeb_cli/templates/mal_success.html,sha256=Z9GMv6EMnj-y03F8YWu7kufmxLbqEMdzuBOln5PMsBU,2140
|
|
61
|
+
weeb_cli/ui/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
62
|
+
weeb_cli/ui/header.py,sha256=SOQdeA0mkAq6sGbm-MRg_BCm4NZ6u-R2YuCKPY25Di0,814
|
|
63
|
+
weeb_cli/ui/menu.py,sha256=0hW9QaFO-oTwdHfoISl2uIQg-AFoH68rlzSRfF7KqLU,6589
|
|
64
|
+
weeb_cli/ui/prompt.py,sha256=VsY3kl9aByQDDKWOY9pMee_n1cZqLNij6XwBctzwUQs,4824
|
|
65
|
+
weeb_cli/utils/__init__.py,sha256=KBQxVazYpjytzIpwXgrfjjVAHxFEV8jhah5WGZaBLa0,186
|
|
66
|
+
weeb_cli/utils/sanitizer.py,sha256=44esKnQ0OOimcDFbBvfdfVLPvY2-M52rIZKmdhMnH9E,1722
|
|
67
|
+
animloid-2.7.0.dist-info/METADATA,sha256=K8JmVVCBwvEsMkiHR8nTw42o4SV0rqauas5_UwDhhAM,5936
|
|
68
|
+
animloid-2.7.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
69
|
+
animloid-2.7.0.dist-info/entry_points.txt,sha256=bZQSu0EqNyxKEGRHs4vyTNss19zBzwhOC4U0hTjw3vU,49
|
|
70
|
+
animloid-2.7.0.dist-info/top_level.txt,sha256=a6C49Xdr3UlT5-5tsCBNR06JUVtaeaLml05XZSxi8Lw,24
|
|
71
|
+
animloid-2.7.0.dist-info/RECORD,,
|