KekikStream 1.4.6__py3-none-any.whl → 1.4.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/Plugins/DiziYou.py +2 -2
- KekikStream/Plugins/HDFilmCehennemi.py +2 -2
- KekikStream/Plugins/RecTV.py +2 -2
- KekikStream/Plugins/SineWix.py +2 -1
- {kekikstream-1.4.6.dist-info → kekikstream-1.4.7.dist-info}/METADATA +1 -1
- {kekikstream-1.4.6.dist-info → kekikstream-1.4.7.dist-info}/RECORD +10 -10
- {kekikstream-1.4.6.dist-info → kekikstream-1.4.7.dist-info}/LICENSE +0 -0
- {kekikstream-1.4.6.dist-info → kekikstream-1.4.7.dist-info}/WHEEL +0 -0
- {kekikstream-1.4.6.dist-info → kekikstream-1.4.7.dist-info}/entry_points.txt +0 -0
- {kekikstream-1.4.6.dist-info → kekikstream-1.4.7.dist-info}/top_level.txt +0 -0
KekikStream/Plugins/DiziYou.py
CHANGED
@@ -29,6 +29,8 @@ class DiziYou(PluginBase):
|
|
29
29
|
f"{main_url}/dizi-arsivi/page/SAYFA/?tur=Vah%C5%9Fi+Bat%C4%B1" : "Vahşi Batı"
|
30
30
|
}
|
31
31
|
|
32
|
+
_data = {}
|
33
|
+
|
32
34
|
@kekik_cache(ttl=60*60)
|
33
35
|
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
34
36
|
istek = await self.httpx.get(f"{url.replace('SAYFA', str(page))}")
|
@@ -107,8 +109,6 @@ class DiziYou(PluginBase):
|
|
107
109
|
|
108
110
|
@kekik_cache(ttl=15*60)
|
109
111
|
async def load_links(self, url: str) -> list[str]:
|
110
|
-
self._data.clear()
|
111
|
-
|
112
112
|
istek = await self.httpx.get(url)
|
113
113
|
secici = Selector(istek.text)
|
114
114
|
|
@@ -29,6 +29,8 @@ class HDFilmCehennemi(PluginBase):
|
|
29
29
|
f"{main_url}/tur/romantik-filmleri-izle-1" : "Romantik Filmleri"
|
30
30
|
}
|
31
31
|
|
32
|
+
_data = {}
|
33
|
+
|
32
34
|
@kekik_cache(ttl=60*60)
|
33
35
|
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
34
36
|
istek = await self.httpx.get(f"{url}", follow_redirects=True)
|
@@ -189,8 +191,6 @@ class HDFilmCehennemi(PluginBase):
|
|
189
191
|
|
190
192
|
@kekik_cache(ttl=15*60)
|
191
193
|
async def load_links(self, url: str) -> list[str]:
|
192
|
-
self._data.clear()
|
193
|
-
|
194
194
|
istek = await self.httpx.get(url)
|
195
195
|
secici = Selector(istek.text)
|
196
196
|
|
KekikStream/Plugins/RecTV.py
CHANGED
@@ -33,6 +33,8 @@ class RecTV(PluginBase):
|
|
33
33
|
f"{main_url}/api/movie/by/filtres/5/created/SAYFA/{sw_key}/" : "Romantik"
|
34
34
|
}
|
35
35
|
|
36
|
+
_data = {}
|
37
|
+
|
36
38
|
@kekik_cache(ttl=60*60)
|
37
39
|
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
38
40
|
istek = await self.httpx.get(f"{url.replace('SAYFA', str(int(page) - 1))}")
|
@@ -130,8 +132,6 @@ class RecTV(PluginBase):
|
|
130
132
|
|
131
133
|
videolar = []
|
132
134
|
if veri.get("sources"):
|
133
|
-
self._data.clear()
|
134
|
-
|
135
135
|
for kaynak in veri.get("sources"):
|
136
136
|
video_link = kaynak.get("url")
|
137
137
|
if "otolinkaff" in video_link:
|
KekikStream/Plugins/SineWix.py
CHANGED
@@ -34,6 +34,8 @@ class SineWix(PluginBase):
|
|
34
34
|
f"{main_url}/sinewix/movies/36" : "Tarih",
|
35
35
|
}
|
36
36
|
|
37
|
+
_data = {}
|
38
|
+
|
37
39
|
@kekik_cache(ttl=60*60)
|
38
40
|
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
39
41
|
istek = await self.httpx.get(f"{url}/{page}")
|
@@ -137,7 +139,6 @@ class SineWix(PluginBase):
|
|
137
139
|
alt_title = veri.get("original_name") or ""
|
138
140
|
title = f"{org_title} - {alt_title}" if (alt_title and org_title != alt_title) else org_title
|
139
141
|
|
140
|
-
self._data.clear()
|
141
142
|
for video in veri.get("videos"):
|
142
143
|
video_link = video.get("link").split("_blank\">")[-1]
|
143
144
|
self._data[video_link] = {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: KekikStream
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.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
|
@@ -44,20 +44,20 @@ KekikStream/Extractors/VidMoxy.py,sha256=T1iqfyOasRxoepmuWAmXeVW6E7M1O18KG3264KU
|
|
44
44
|
KekikStream/Extractors/VideoSeyred.py,sha256=M6QPZ_isX9vM_7LPo-2I_8Cf1vB9awHw8vvzBODtoiQ,1977
|
45
45
|
KekikStream/Helpers/Unpack.py,sha256=iS-r6k-NHlBleWsVwv_QXLaEMbJRBUXDKqVE6NkWEIk,2235
|
46
46
|
KekikStream/Plugins/DiziBox.py,sha256=Vk7ujbMTORimFNXA7BTZkQnXs-6WBfI7iIJxFYRJaH0,9326
|
47
|
-
KekikStream/Plugins/DiziYou.py,sha256=
|
47
|
+
KekikStream/Plugins/DiziYou.py,sha256=rNX88oa-3hT1fly9hkkBz5qqBObwv6AyaiBWhYGTBfA,8011
|
48
48
|
KekikStream/Plugins/Dizilla.py,sha256=E3HehhcnZBDVJzroRa7jlFzj3ixdx9-LT7YnWKmcX3Q,6899
|
49
49
|
KekikStream/Plugins/FilmMakinesi.py,sha256=J4v35Ln3RehWPai3I-9nWrasRLx3hN3IgrWVpt5b_HE,5712
|
50
50
|
KekikStream/Plugins/FullHDFilmizlesene.py,sha256=AO9Il0PE77JUvg1AN4Vxl95pTrCBbOjclqFGWuzo7cY,6271
|
51
|
-
KekikStream/Plugins/HDFilmCehennemi.py,sha256=
|
51
|
+
KekikStream/Plugins/HDFilmCehennemi.py,sha256=XXjBwKdg0xBKv0x5kOgguLywHLAtmk06Y7AlZ9sQtJw,9947
|
52
52
|
KekikStream/Plugins/JetFilmizle.py,sha256=P6m8PfsG1PRRMQb1wmCGb9j4-N53xITq9JmKvwwny0I,5586
|
53
|
-
KekikStream/Plugins/RecTV.py,sha256=
|
53
|
+
KekikStream/Plugins/RecTV.py,sha256=s4YqFGtd1zW_clcjMkTBky66R65h84sOXEUC8NogH_w,7262
|
54
54
|
KekikStream/Plugins/SezonlukDizi.py,sha256=IvmOB6qCEHBy41BS4KFBjsTegmzEF6l-2l_CvamYrW8,6099
|
55
55
|
KekikStream/Plugins/Shorten.py,sha256=dDYt89WX-CcDhJAAV2A4zaD4xcZa8aN6-YcAcseyVo4,8948
|
56
|
-
KekikStream/Plugins/SineWix.py,sha256=
|
56
|
+
KekikStream/Plugins/SineWix.py,sha256=4kr7nfcGfZQrpjnEesMlu7DzSLubZhNHzaG01h7fxgM,7208
|
57
57
|
KekikStream/Plugins/UgurFilm.py,sha256=tChGgiAeQeVUqHqrVXDz_eMIyghOHqKuHJb0pCQqs1M,4724
|
58
|
-
kekikstream-1.4.
|
59
|
-
kekikstream-1.4.
|
60
|
-
kekikstream-1.4.
|
61
|
-
kekikstream-1.4.
|
62
|
-
kekikstream-1.4.
|
63
|
-
kekikstream-1.4.
|
58
|
+
kekikstream-1.4.7.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
59
|
+
kekikstream-1.4.7.dist-info/METADATA,sha256=R1K26gX_5fcb58KJDbBE9U27FFAQNvHNmUItuLIeVK8,4973
|
60
|
+
kekikstream-1.4.7.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
61
|
+
kekikstream-1.4.7.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
|
62
|
+
kekikstream-1.4.7.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
|
63
|
+
kekikstream-1.4.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|