KekikStream 1.9.7__py3-none-any.whl → 1.9.9__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/Extractor/ExtractorBase.py +1 -0
- KekikStream/Core/Plugin/PluginBase.py +1 -0
- KekikStream/Extractors/JetTv.py +1 -1
- KekikStream/Extractors/PlayerFilmIzle.py +3 -3
- KekikStream/Plugins/SinemaCX.py +1 -1
- {kekikstream-1.9.7.dist-info → kekikstream-1.9.9.dist-info}/METADATA +1 -1
- {kekikstream-1.9.7.dist-info → kekikstream-1.9.9.dist-info}/RECORD +11 -11
- {kekikstream-1.9.7.dist-info → kekikstream-1.9.9.dist-info}/WHEEL +0 -0
- {kekikstream-1.9.7.dist-info → kekikstream-1.9.9.dist-info}/entry_points.txt +0 -0
- {kekikstream-1.9.7.dist-info → kekikstream-1.9.9.dist-info}/licenses/LICENSE +0 -0
- {kekikstream-1.9.7.dist-info → kekikstream-1.9.9.dist-info}/top_level.txt +0 -0
|
@@ -23,6 +23,7 @@ class ExtractorBase(ABC):
|
|
|
23
23
|
)
|
|
24
24
|
self.httpx.headers.update(self.cloudscraper.headers)
|
|
25
25
|
self.httpx.cookies.update(self.cloudscraper.cookies)
|
|
26
|
+
self.httpx.headers.update({"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 15.7; rv:135.0) Gecko/20100101 Firefox/135.0"})
|
|
26
27
|
|
|
27
28
|
def can_handle_url(self, url: str) -> bool:
|
|
28
29
|
# URL'nin bu çıkarıcı tarafından işlenip işlenemeyeceğini kontrol et
|
|
@@ -34,6 +34,7 @@ class PluginBase(ABC):
|
|
|
34
34
|
)
|
|
35
35
|
self.httpx.headers.update(self.cloudscraper.headers)
|
|
36
36
|
self.httpx.cookies.update(self.cloudscraper.cookies)
|
|
37
|
+
self.httpx.headers.update({"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 15.7; rv:135.0) Gecko/20100101 Firefox/135.0"})
|
|
37
38
|
|
|
38
39
|
self.media_handler = MediaHandler()
|
|
39
40
|
self.ex_manager = ExtractorManager()
|
KekikStream/Extractors/JetTv.py
CHANGED
|
@@ -31,7 +31,7 @@ class JetTv(ExtractorBase):
|
|
|
31
31
|
|
|
32
32
|
# 2. Yöntem: Regex Fallback
|
|
33
33
|
if not master_url:
|
|
34
|
-
if match := re.search(r"file: '([^']*)'", document, re.
|
|
34
|
+
if match := re.search(r"file: '([^']*)'", document, re.IGNORECASE):
|
|
35
35
|
master_url = match.group(1)
|
|
36
36
|
|
|
37
37
|
if not master_url:
|
|
@@ -16,7 +16,7 @@ class PlayerFilmIzle(ExtractorBase):
|
|
|
16
16
|
video_req = istek.text
|
|
17
17
|
|
|
18
18
|
subtitles = []
|
|
19
|
-
if sub_match := re.search(r'playerjsSubtitle = "([^"]*)"', video_req, re.
|
|
19
|
+
if sub_match := re.search(r'playerjsSubtitle = "([^"]*)"', video_req, re.IGNORECASE):
|
|
20
20
|
sub_yakala = sub_match.group(1)
|
|
21
21
|
# Format örneği: [dil]url
|
|
22
22
|
# Kotlin kodunda: subYakala.substringAfter("]") -> url
|
|
@@ -27,7 +27,7 @@ class PlayerFilmIzle(ExtractorBase):
|
|
|
27
27
|
subtitles.append(Subtitle(name=sub_lang, url=sub_url))
|
|
28
28
|
|
|
29
29
|
# Data yakalama: FirePlayer|DATA|...
|
|
30
|
-
data_match = re.search(r'FirePlayer\|([^|]+)\|', video_req, re.
|
|
30
|
+
data_match = re.search(r'FirePlayer\|([^|]+)\|', video_req, re.IGNORECASE)
|
|
31
31
|
data_val = data_match.group(1) if data_match else None
|
|
32
32
|
|
|
33
33
|
if not data_val:
|
|
@@ -47,7 +47,7 @@ class PlayerFilmIzle(ExtractorBase):
|
|
|
47
47
|
get_url = response.text.replace("\\", "")
|
|
48
48
|
|
|
49
49
|
m3u8_url = ""
|
|
50
|
-
if url_yakala := re.search(r'"securedLink":"([^"]*)"', get_url, re.
|
|
50
|
+
if url_yakala := re.search(r'"securedLink":"([^"]*)"', get_url, re.IGNORECASE):
|
|
51
51
|
m3u8_url = url_yakala.group(1)
|
|
52
52
|
|
|
53
53
|
if not m3u8_url:
|
KekikStream/Plugins/SinemaCX.py
CHANGED
|
@@ -7,7 +7,7 @@ import re
|
|
|
7
7
|
class SinemaCX(PluginBase):
|
|
8
8
|
name = "SinemaCX"
|
|
9
9
|
language = "tr"
|
|
10
|
-
main_url = "https://www.sinema.
|
|
10
|
+
main_url = "https://www.sinema.fit"
|
|
11
11
|
favicon = f"https://www.google.com/s2/favicons?domain={main_url}&sz=64"
|
|
12
12
|
description = "HD Film izle, Türkçe Dublaj ve Altyazılı filmler."
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: KekikStream
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.9
|
|
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
|
|
@@ -4,13 +4,13 @@ KekikStream/requirements.txt,sha256=0fO-7byqgLMr4NyJO7fQBFOnLv0zcAeqk7tLhHXqonk,
|
|
|
4
4
|
KekikStream/CLI/__init__.py,sha256=U6oLq_O7u5y2eHhBnmfhZNns_EqHHJXJmzl8jvZFUNY,230
|
|
5
5
|
KekikStream/CLI/pypi_kontrol.py,sha256=q6fNs6EKJDc5VuUFig9DBzLzNPp_kMD1vOVgLElcii8,1487
|
|
6
6
|
KekikStream/Core/__init__.py,sha256=ar2MZQF83ryfLfydEXcfjdwNe4Too_HT6bP-D_4TopA,710
|
|
7
|
-
KekikStream/Core/Extractor/ExtractorBase.py,sha256=
|
|
7
|
+
KekikStream/Core/Extractor/ExtractorBase.py,sha256=EDuI3AfeWbQUW_v9iU4DCQYmtq5SIRGFkU8Ri9Mtkow,1774
|
|
8
8
|
KekikStream/Core/Extractor/ExtractorLoader.py,sha256=7uxUXTAuF65KKkmbI6iRiCiUhx-IqrronB7ixhchcTU,4289
|
|
9
9
|
KekikStream/Core/Extractor/ExtractorManager.py,sha256=W8LkEl0TXLYvbF6PWw9Q0BEYs17UQiHHrEOqBDyB_Eg,2652
|
|
10
10
|
KekikStream/Core/Extractor/ExtractorModels.py,sha256=Qj_gbIeGRewaZXNfYkTi4FFRRq6XBOc0HS0tXGDwajI,445
|
|
11
11
|
KekikStream/Core/Media/MediaHandler.py,sha256=MEn3spPAThVloN3WcoCwWhpoyMA7tAZvcwYjmjJsX3U,7678
|
|
12
12
|
KekikStream/Core/Media/MediaManager.py,sha256=AaUq2D7JSJIphjoAj2fjLOJjswm7Qf5hjYCbBdrbnDU,438
|
|
13
|
-
KekikStream/Core/Plugin/PluginBase.py,sha256=
|
|
13
|
+
KekikStream/Core/Plugin/PluginBase.py,sha256=maUXMGHZQ6JOJdQoHG9hmyy1-_XKR5z0BGw0YtEkSLI,4009
|
|
14
14
|
KekikStream/Core/Plugin/PluginLoader.py,sha256=yZxMug-OcJ5RBm4fQkoquKrZxcBU7Pvt4IcY-d0WU8g,3393
|
|
15
15
|
KekikStream/Core/Plugin/PluginManager.py,sha256=CZVg1eegi8vfMfccx0DRV0Box8kXz-aoULTQLgbPbvM,893
|
|
16
16
|
KekikStream/Core/Plugin/PluginModels.py,sha256=Yvx-6Fkn8QCIcuqAkFbCP5EJcq3XBkK_P8S0tRNhS6E,2476
|
|
@@ -26,7 +26,7 @@ KekikStream/Extractors/FourPlayRu.py,sha256=wq1ylxKpsO_IBoYr_ALzB2dVrQpJ-jY9lf2z
|
|
|
26
26
|
KekikStream/Extractors/HDPlayerSystem.py,sha256=EgnFzx5Q4PkuwAtuff5SYU9k59B-CyOdySl7lbCZ9hM,1312
|
|
27
27
|
KekikStream/Extractors/HDStreamAble.py,sha256=66n5EvIdX_or5cdnlJ_Uqmzi50n4rl9c5VCw8kBqhQk,245
|
|
28
28
|
KekikStream/Extractors/Hotlinger.py,sha256=NFMRgUmb6BCrJfa7Hi0VarDNYvCeVknBWEk24FKBBa0,224
|
|
29
|
-
KekikStream/Extractors/JetTv.py,sha256=
|
|
29
|
+
KekikStream/Extractors/JetTv.py,sha256=aA3WeOvR-tszac-WSwunZZb1NRy25TQH8vxY3TDscRI,1596
|
|
30
30
|
KekikStream/Extractors/MailRu.py,sha256=xQVCWwYqNoG5T43VAW1_m0v4e80FbO-1pNPKkwhTccU,1218
|
|
31
31
|
KekikStream/Extractors/MixPlayHD.py,sha256=POV_yq3KoZ6S6EqFsKYULEBz92NdUa2BpYKNo0eNQH8,1552
|
|
32
32
|
KekikStream/Extractors/MixTiger.py,sha256=mMEYhhr5-u6GgIrLESeFTRdwDykgSXKJO4KtkMML1bw,2124
|
|
@@ -38,7 +38,7 @@ KekikStream/Extractors/PeaceMakerst.py,sha256=ZKk454eNZpeamht61UH9yMYe00_zGb3MSy
|
|
|
38
38
|
KekikStream/Extractors/Pichive.py,sha256=BSVYFwL3Ax6yGoS1WkpOWtngxNyuZLoKzpPwjibpu2s,221
|
|
39
39
|
KekikStream/Extractors/PixelDrain.py,sha256=Uk2pPvtBzaKtRXu1iNO8FLHd0EAuIOIzI1H_n02tg-U,964
|
|
40
40
|
KekikStream/Extractors/PlayRu.py,sha256=DQMZyCSJwLkrh-gfDD8T1DvUFNBAKUXpByeCAWuK6YY,215
|
|
41
|
-
KekikStream/Extractors/PlayerFilmIzle.py,sha256=
|
|
41
|
+
KekikStream/Extractors/PlayerFilmIzle.py,sha256=vDumIya3gWN8h1to5XCzBWePa6gdNU2DVTK3OrPr04U,2425
|
|
42
42
|
KekikStream/Extractors/RapidVid.py,sha256=TxNnLUmYaAHi-rFkoLu4eQULzkUSvQnfoEZAjyzQFns,2917
|
|
43
43
|
KekikStream/Extractors/SetPlay.py,sha256=FsbLlYFXp7_28-ta6XAoqDQAEGYTVZOZayebkY1mWe8,1906
|
|
44
44
|
KekikStream/Extractors/SetPrime.py,sha256=ob09y-Sm91YR7rIRzikhZiMHX6D4Djm5QzFTg6KbO4k,1536
|
|
@@ -74,13 +74,13 @@ KekikStream/Plugins/SelcukFlix.py,sha256=WYVtGMxngpqrXk7PX_B4ya6Pji7dOjQsXoukk30
|
|
|
74
74
|
KekikStream/Plugins/SezonlukDizi.py,sha256=dT2xPPkdaYV43qsL4Le_5Yel8eoPkHtnXIOXqz-Ya-c,6326
|
|
75
75
|
KekikStream/Plugins/SineWix.py,sha256=xdTeg8GHUpyZsY6EQ5I1ZIT4-lB_qwBwvHQVmdMPpEI,7364
|
|
76
76
|
KekikStream/Plugins/Sinefy.py,sha256=YMwG7ykdjzAY_GEvV4xv9NJ6ubew7qeMLz4KkvYpaNk,9749
|
|
77
|
-
KekikStream/Plugins/SinemaCX.py,sha256=
|
|
77
|
+
KekikStream/Plugins/SinemaCX.py,sha256=dEoZJJLnTgayBeCbGoR1qSUjrnTeRx5ZLck_dSPDL4c,7177
|
|
78
78
|
KekikStream/Plugins/Sinezy.py,sha256=EttAZogKoKMP8RP_X1fSfi8vVxA2RWizwgnLkmnhERQ,5675
|
|
79
79
|
KekikStream/Plugins/SuperFilmGeldi.py,sha256=Ohm21BPsJH_S1tx5i2APEgAOD25k2NiwRP7rSgAKvRs,5289
|
|
80
80
|
KekikStream/Plugins/UgurFilm.py,sha256=eKGzmSi8k_QbXnYPWXZRdmCxxc32zZh4rynmdxCbm1o,4832
|
|
81
|
-
kekikstream-1.9.
|
|
82
|
-
kekikstream-1.9.
|
|
83
|
-
kekikstream-1.9.
|
|
84
|
-
kekikstream-1.9.
|
|
85
|
-
kekikstream-1.9.
|
|
86
|
-
kekikstream-1.9.
|
|
81
|
+
kekikstream-1.9.9.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
82
|
+
kekikstream-1.9.9.dist-info/METADATA,sha256=3WcSjVCazXL_jBuyWDwkWLc0C5lbE2VuO_UdQSu0Ntg,9079
|
|
83
|
+
kekikstream-1.9.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
84
|
+
kekikstream-1.9.9.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
|
|
85
|
+
kekikstream-1.9.9.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
|
|
86
|
+
kekikstream-1.9.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|