KekikStream 0.0.1__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.
- KekikStream/CLI/__init__.py +3 -0
- KekikStream/Core/ExtractorBase.py +18 -0
- KekikStream/Core/ExtractorLoader.py +61 -0
- KekikStream/Core/ExtractorModels.py +17 -0
- KekikStream/Core/MediaHandler.py +58 -0
- KekikStream/Core/PluginBase.py +42 -0
- KekikStream/Core/PluginLoader.py +63 -0
- KekikStream/Core/PluginModels.py +32 -0
- KekikStream/Core/__init__.py +9 -0
- KekikStream/Extractors/CloseLoad.py +30 -0
- KekikStream/Extractors/MailRu.py +40 -0
- KekikStream/Managers/ExtractorManager.py +27 -0
- KekikStream/Managers/MediaManager.py +19 -0
- KekikStream/Managers/PluginManager.py +18 -0
- KekikStream/Managers/UIManager.py +32 -0
- KekikStream/Managers/__init__.py +6 -0
- KekikStream/Plugins/FilmMakinesi.py +65 -0
- KekikStream/Plugins/UgurFilm.py +75 -0
- KekikStream/__init__.py +114 -0
- KekikStream/__main__.py +6 -0
- KekikStream/requirements.txt +9 -0
- KekikStream-0.0.1.dist-info/LICENSE +674 -0
- KekikStream-0.0.1.dist-info/METADATA +66 -0
- KekikStream-0.0.1.dist-info/RECORD +27 -0
- KekikStream-0.0.1.dist-info/WHEEL +5 -0
- KekikStream-0.0.1.dist-info/entry_points.txt +2 -0
- KekikStream-0.0.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: KekikStream
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: KekikStream bir medya içerik yöneticisi ve oynatıcıdır. Kullanıcıların farklı platformlardaki içerikleri aramasını, detaylarını görüntülemesini ve izleme bağlantılarına erişmesini sağlar. Proje, modüler bir yapıya sahiptir ve kolayca yeni eklenti (plugin) ve çıkarıcı (extractor) eklenebilir.
|
5
|
+
Home-page: https://github.com/keyiflerolsun/KekikStream
|
6
|
+
Author: keyiflerolsun
|
7
|
+
Author-email: keyiflerolsun@gmail.com
|
8
|
+
License: GPLv3+
|
9
|
+
Keywords: KekikStream,KekikAkademi,keyiflerolsun
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
11
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Requires-Python: >=3.12
|
14
|
+
Description-Content-Type: text/markdown
|
15
|
+
License-File: LICENSE
|
16
|
+
Requires-Dist: setuptools
|
17
|
+
Requires-Dist: wheel
|
18
|
+
Requires-Dist: Kekik
|
19
|
+
Requires-Dist: httpx
|
20
|
+
Requires-Dist: parsel
|
21
|
+
Requires-Dist: pydantic
|
22
|
+
Requires-Dist: InquirerPy
|
23
|
+
|
24
|
+
# <img src="https://github.com/keyiflerolsun/KekikStream/raw/master/.github/icons/KekikStream.png?raw=True" height="32" align="center"> KekikStream
|
25
|
+
|
26
|
+
[](#)
|
27
|
+
[](#)
|
28
|
+
<a href="https://KekikAkademi.org/Kahve" target="_blank"><img src="https://img.shields.io/badge/☕️-Kahve Ismarla-ffdd00" title="☕️ Kahve Ismarla" style="padding-left:5px;"></a>
|
29
|
+
|
30
|
+
*terminal üzerinden medya içeriği aramanızı ve VLC/MPV gibi popüler medya oynatıcılar aracılığıyla doğrudan izlemenizi sağlayan modüler ve genişletilebilir bir bıdı bıdı*
|
31
|
+
|
32
|
+
[](https://www.python.org/)
|
33
|
+
[](https://GitHub.com/keyiflerolsun/)
|
34
|
+
|
35
|
+
## 🚀 Kurulum
|
36
|
+
|
37
|
+
```bash
|
38
|
+
# Yüklemek
|
39
|
+
pip install git+https://github.com/keyiflerolsun/KekikStream.git
|
40
|
+
|
41
|
+
# Güncellemek
|
42
|
+
pip install -U git+https://github.com/keyiflerolsun/KekikStream.git
|
43
|
+
```
|
44
|
+
|
45
|
+
## <img src="https://www.akashtrehan.com/assets/images/emoji/terminal.png" height="32" align="center"> Kullanım
|
46
|
+
|
47
|
+
```bash
|
48
|
+
KekikStream
|
49
|
+
```
|
50
|
+
|
51
|
+
## 💸 Bağış Yap
|
52
|
+
|
53
|
+
**[☕️ Kahve Ismarla](https://KekikAkademi.org/Kahve)**
|
54
|
+
|
55
|
+
## 🌐 Telif Hakkı ve Lisans
|
56
|
+
|
57
|
+
* *Copyright (C) 2024 by* [keyiflerolsun](https://github.com/keyiflerolsun) ❤️️
|
58
|
+
* [GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007](https://github.com/keyiflerolsun/KekikStream/blob/master/LICENSE) *Koşullarına göre lisanslanmıştır..*
|
59
|
+
|
60
|
+
## ♻️ İletişim
|
61
|
+
|
62
|
+
*Benimle iletişime geçmek isterseniz, **Telegram**'dan mesaj göndermekten çekinmeyin;* [@keyiflerolsun](https://t.me/KekikKahve)
|
63
|
+
|
64
|
+
##
|
65
|
+
|
66
|
+
> **[@KekikAkademi](https://t.me/KekikAkademi)** *için yazılmıştır..*
|
@@ -0,0 +1,27 @@
|
|
1
|
+
KekikStream/__init__.py,sha256=eS2UrTYgs9jGdDoGe6JyCyJMBV-8ymXVcEAXDylrJAs,4204
|
2
|
+
KekikStream/__main__.py,sha256=4U-NO1f0Mts5Mf_QnWhWqRbTsRBy2y2VPlpHyaqG9_I,137
|
3
|
+
KekikStream/requirements.txt,sha256=Kh3E0NzIkAmhVODtIwRVffVOHLiElO6Ua9kIgjbocPE,57
|
4
|
+
KekikStream/CLI/__init__.py,sha256=so-9S3fmNAyHtZYYUTEI1YaUHPiQhVA6U-Q0grACaRg,178
|
5
|
+
KekikStream/Core/ExtractorBase.py,sha256=SJd8pujIB69FJ-kWxqroJiV2sToUgyuUOoYd9ZyImr0,630
|
6
|
+
KekikStream/Core/ExtractorLoader.py,sha256=JovJJr6Clk3xpbRLlh7v_XOl3FGwVXCjTZivec1FktI,2533
|
7
|
+
KekikStream/Core/ExtractorModels.py,sha256=vJeh4qd05K7nbqdCCGU29UkGQpce6jXfsCm7LuDL1G8,454
|
8
|
+
KekikStream/Core/MediaHandler.py,sha256=kbkQDsTw6F1qOFszSLcAkW0iHCrhNHC-OGWotI6D_aI,2350
|
9
|
+
KekikStream/Core/PluginBase.py,sha256=HHkfncke3XY-OsFbKGicDAqkbOtBS_dnOaZT77xLCHU,1351
|
10
|
+
KekikStream/Core/PluginLoader.py,sha256=POayKsWOjAuReMbp6_aWbG5lIioQzpQT3u1LQXMqUwY,2574
|
11
|
+
KekikStream/Core/PluginModels.py,sha256=bokfnVqMwVgs65A4tFUM64u4f-xcLAAGPehrfC0TI6g,998
|
12
|
+
KekikStream/Core/__init__.py,sha256=tW3rP6d18BAD54p9QiIzrPBG396tYm2DlUCnmrPAmmI,385
|
13
|
+
KekikStream/Extractors/CloseLoad.py,sha256=CWsKliU-JebMrA09GrBrZ3xJXBRTu1298UJ0ZRhdSxE,1089
|
14
|
+
KekikStream/Extractors/MailRu.py,sha256=-i5Y3-c4DQuJgRseh0q0vln6wMbI_42d6lLPlk4aZV8,1501
|
15
|
+
KekikStream/Managers/ExtractorManager.py,sha256=4p5VaERx3qIIzvti9gl_khkCWYcVnzUNORmMP-OrQu0,925
|
16
|
+
KekikStream/Managers/MediaManager.py,sha256=F7mkSvAttAaMHRvnDcxnV2K1D_sK644BCSrEaAmMl_U,522
|
17
|
+
KekikStream/Managers/PluginManager.py,sha256=5O19YNCt4P7a6yVzlDvmxfZLA9SX9LxDs5bqqZ4i1rA,566
|
18
|
+
KekikStream/Managers/UIManager.py,sha256=81ZSGFdf1nKw1NjL-nqwgQTYAgzJqybBWXqWCNQ_JPc,1102
|
19
|
+
KekikStream/Managers/__init__.py,sha256=3085I_9Sa2L_Vq6Z-QvYUYn1BapkN4sQqBo8ITZoD_4,251
|
20
|
+
KekikStream/Plugins/FilmMakinesi.py,sha256=is0TurL8ChWuWiMmIVxKFWa--yNYyFzFfBRldlUt_jg,2945
|
21
|
+
KekikStream/Plugins/UgurFilm.py,sha256=-90rdlvCu6NLyeYDrtmYKcEoWT_mBtzz4sQ6iZcaz54,3008
|
22
|
+
KekikStream-0.0.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
23
|
+
KekikStream-0.0.1.dist-info/METADATA,sha256=fgWdNEeKUQM3Z3QqwHFthV5Id87n_Zi0f2oVMcQLrjk,2976
|
24
|
+
KekikStream-0.0.1.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
25
|
+
KekikStream-0.0.1.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
|
26
|
+
KekikStream-0.0.1.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
|
27
|
+
KekikStream-0.0.1.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
KekikStream
|