KekikStream 0.0.3__py3-none-any.whl → 0.0.7__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/Core/ExtractorBase.py +1 -1
- KekikStream/Core/MediaHandler.py +5 -1
- KekikStream/Core/PluginBase.py +1 -1
- KekikStream/Extractors/CloseLoad.py +0 -1
- KekikStream/Extractors/MailRu.py +0 -2
- KekikStream/Extractors/VidMoxy.py +0 -2
- {KekikStream-0.0.3.dist-info → KekikStream-0.0.7.dist-info}/METADATA +6 -2
- {KekikStream-0.0.3.dist-info → KekikStream-0.0.7.dist-info}/RECORD +12 -12
- {KekikStream-0.0.3.dist-info → KekikStream-0.0.7.dist-info}/LICENSE +0 -0
- {KekikStream-0.0.3.dist-info → KekikStream-0.0.7.dist-info}/WHEEL +0 -0
- {KekikStream-0.0.3.dist-info → KekikStream-0.0.7.dist-info}/entry_points.txt +0 -0
- {KekikStream-0.0.3.dist-info → KekikStream-0.0.7.dist-info}/top_level.txt +0 -0
@@ -12,7 +12,7 @@ class ExtractorBase(ABC):
|
|
12
12
|
def __init__(self):
|
13
13
|
self.oturum = AsyncClient(
|
14
14
|
headers = {
|
15
|
-
"User-Agent" : "
|
15
|
+
"User-Agent" : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5)",
|
16
16
|
"Accept" : "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
|
17
17
|
},
|
18
18
|
timeout = Timeout(10.0),
|
KekikStream/Core/MediaHandler.py
CHANGED
@@ -31,8 +31,10 @@ class MediaHandler:
|
|
31
31
|
subprocess.run(vlc_command, check=True)
|
32
32
|
except subprocess.CalledProcessError as e:
|
33
33
|
konsol.print(f"[red]VLC oynatma hatası: {e}[/red]")
|
34
|
+
konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
|
34
35
|
except FileNotFoundError:
|
35
36
|
konsol.print("[red]VLC bulunamadı! VLC kurulu olduğundan emin olun.[/red]")
|
37
|
+
konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
|
36
38
|
|
37
39
|
def play_with_mpv(self, extract_data: ExtractResult):
|
38
40
|
try:
|
@@ -54,5 +56,7 @@ class MediaHandler:
|
|
54
56
|
subprocess.run(mpv_command, check=True)
|
55
57
|
except subprocess.CalledProcessError as e:
|
56
58
|
konsol.print(f"[red]mpv oynatma hatası: {e}[/red]")
|
59
|
+
konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
|
57
60
|
except FileNotFoundError:
|
58
|
-
konsol.print("[red]mpv bulunamadı! mpv kurulu olduğundan emin olun.[/red]")
|
61
|
+
konsol.print("[red]mpv bulunamadı! mpv kurulu olduğundan emin olun.[/red]")
|
62
|
+
konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
|
KekikStream/Core/PluginBase.py
CHANGED
@@ -11,7 +11,7 @@ class PluginBase(ABC):
|
|
11
11
|
def __init__(self):
|
12
12
|
self.oturum = AsyncClient(
|
13
13
|
headers = {
|
14
|
-
"User-Agent" : "
|
14
|
+
"User-Agent" : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5)",
|
15
15
|
"Accept" : "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
|
16
16
|
},
|
17
17
|
timeout = Timeout(10.0),
|
KekikStream/Extractors/MailRu.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
|
2
2
|
|
3
3
|
from KekikStream.Core import ExtractorBase, ExtractResult
|
4
|
-
from httpx import AsyncClient
|
5
4
|
from Kekik.Sifreleme import Packer, HexCodec
|
6
5
|
import re
|
7
6
|
|
@@ -10,7 +9,6 @@ class VidMoxy(ExtractorBase):
|
|
10
9
|
main_url = "https://vidmoxy.com"
|
11
10
|
|
12
11
|
async def extract(self, url, referer=None) -> ExtractResult:
|
13
|
-
self.oturum.headers.update({"User-Agent":"Mozilla/5.0"})
|
14
12
|
if referer:
|
15
13
|
self.oturum.headers.update({"Referer": referer})
|
16
14
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: KekikStream
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.7
|
4
4
|
Summary: 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ı
|
5
5
|
Home-page: https://github.com/keyiflerolsun/KekikStream
|
6
6
|
Author: keyiflerolsun
|
@@ -10,7 +10,7 @@ Keywords: KekikStream,KekikAkademi,keyiflerolsun
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
13
|
-
Requires-Python: >=3.
|
13
|
+
Requires-Python: >=3.8
|
14
14
|
Description-Content-Type: text/markdown
|
15
15
|
License-File: LICENSE
|
16
16
|
Requires-Dist: setuptools
|
@@ -39,6 +39,10 @@ Requires-Dist: InquirerPy
|
|
39
39
|
|
40
40
|
*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ı*
|
41
41
|
|
42
|
+
[](https://github.com/user-attachments/assets/4171d982-3ab0-4ef3-81b4-b1d8be6f5e8a
|
44
|
+
)
|
45
|
+
|
42
46
|
[](https://www.python.org/)
|
43
47
|
[](https://GitHub.com/keyiflerolsun/)
|
44
48
|
|
@@ -2,17 +2,17 @@ KekikStream/__init__.py,sha256=69FPFbIT8ROAJlc86vyValOhpg-n0lHFRbjO-UpIc0Q,4488
|
|
2
2
|
KekikStream/__main__.py,sha256=4U-NO1f0Mts5Mf_QnWhWqRbTsRBy2y2VPlpHyaqG9_I,137
|
3
3
|
KekikStream/requirements.txt,sha256=Kh3E0NzIkAmhVODtIwRVffVOHLiElO6Ua9kIgjbocPE,57
|
4
4
|
KekikStream/CLI/__init__.py,sha256=so-9S3fmNAyHtZYYUTEI1YaUHPiQhVA6U-Q0grACaRg,178
|
5
|
-
KekikStream/Core/ExtractorBase.py,sha256=
|
5
|
+
KekikStream/Core/ExtractorBase.py,sha256=SPXKZPfpzvgkJeMds-USzgpm8-qb0vgZjjLDs58NfGU,1069
|
6
6
|
KekikStream/Core/ExtractorLoader.py,sha256=JovJJr6Clk3xpbRLlh7v_XOl3FGwVXCjTZivec1FktI,2533
|
7
7
|
KekikStream/Core/ExtractorModels.py,sha256=vJeh4qd05K7nbqdCCGU29UkGQpce6jXfsCm7LuDL1G8,454
|
8
|
-
KekikStream/Core/MediaHandler.py,sha256=
|
9
|
-
KekikStream/Core/PluginBase.py,sha256=
|
8
|
+
KekikStream/Core/MediaHandler.py,sha256=2kcRnGPuKhrdLQwbBYHR9fSY0RgHp763Q6QQnt7MWqg,2743
|
9
|
+
KekikStream/Core/PluginBase.py,sha256=1WTh8jqd-bLs6H_fpaa1Tnbk05U6HC_ChdwEhR9NsYY,1373
|
10
10
|
KekikStream/Core/PluginLoader.py,sha256=POayKsWOjAuReMbp6_aWbG5lIioQzpQT3u1LQXMqUwY,2574
|
11
11
|
KekikStream/Core/PluginModels.py,sha256=bokfnVqMwVgs65A4tFUM64u4f-xcLAAGPehrfC0TI6g,998
|
12
12
|
KekikStream/Core/__init__.py,sha256=tW3rP6d18BAD54p9QiIzrPBG396tYm2DlUCnmrPAmmI,385
|
13
|
-
KekikStream/Extractors/CloseLoad.py,sha256=
|
14
|
-
KekikStream/Extractors/MailRu.py,sha256=
|
15
|
-
KekikStream/Extractors/VidMoxy.py,sha256=
|
13
|
+
KekikStream/Extractors/CloseLoad.py,sha256=YmDB3YvuDaCUbQ0T_tmhnkEsC5mSdEN6GNoAR662fl8,990
|
14
|
+
KekikStream/Extractors/MailRu.py,sha256=lB3Xy912EaSEUw7Im65L5TwtIeM7OLFV1_9lan39g40,1308
|
15
|
+
KekikStream/Extractors/VidMoxy.py,sha256=i59sfXfQFs4tkwarjUsTHMMDsmE0fjgqEJ7Az70n9x0,1128
|
16
16
|
KekikStream/Managers/ExtractorManager.py,sha256=4p5VaERx3qIIzvti9gl_khkCWYcVnzUNORmMP-OrQu0,925
|
17
17
|
KekikStream/Managers/MediaManager.py,sha256=F7mkSvAttAaMHRvnDcxnV2K1D_sK644BCSrEaAmMl_U,522
|
18
18
|
KekikStream/Managers/PluginManager.py,sha256=5O19YNCt4P7a6yVzlDvmxfZLA9SX9LxDs5bqqZ4i1rA,566
|
@@ -21,9 +21,9 @@ KekikStream/Managers/__init__.py,sha256=3085I_9Sa2L_Vq6Z-QvYUYn1BapkN4sQqBo8ITZo
|
|
21
21
|
KekikStream/Plugins/FilmMakinesi.py,sha256=g4LRDP5Atn97PqbgnEdm0-wjVdXaJIVk1Ru0F8B66Ws,2902
|
22
22
|
KekikStream/Plugins/FullHDFilmizlesene.py,sha256=HJzHDXHhhMpvXxiD2SjpoZEYs7dmnPymE8EXCSvLKVo,3106
|
23
23
|
KekikStream/Plugins/UgurFilm.py,sha256=U7ryNWpjSZJWuYlMGX1Be9uuyiM3SfuI9VJcEiXedNs,2960
|
24
|
-
KekikStream-0.0.
|
25
|
-
KekikStream-0.0.
|
26
|
-
KekikStream-0.0.
|
27
|
-
KekikStream-0.0.
|
28
|
-
KekikStream-0.0.
|
29
|
-
KekikStream-0.0.
|
24
|
+
KekikStream-0.0.7.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
25
|
+
KekikStream-0.0.7.dist-info/METADATA,sha256=7LR8xuS098fdt9PF6gFLabge8FGyTN817qRRK7HjBa4,3861
|
26
|
+
KekikStream-0.0.7.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
27
|
+
KekikStream-0.0.7.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
|
28
|
+
KekikStream-0.0.7.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
|
29
|
+
KekikStream-0.0.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|