KekikStream 1.3.4__py3-none-any.whl → 1.3.6__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 +1 -1
- KekikStream/Plugins/UgurFilm.py +34 -3
- {kekikstream-1.3.4.dist-info → kekikstream-1.3.6.dist-info}/METADATA +1 -1
- {kekikstream-1.3.4.dist-info → kekikstream-1.3.6.dist-info}/RECORD +8 -8
- {kekikstream-1.3.4.dist-info → kekikstream-1.3.6.dist-info}/LICENSE +0 -0
- {kekikstream-1.3.4.dist-info → kekikstream-1.3.6.dist-info}/WHEEL +0 -0
- {kekikstream-1.3.4.dist-info → kekikstream-1.3.6.dist-info}/entry_points.txt +0 -0
- {kekikstream-1.3.4.dist-info → kekikstream-1.3.6.dist-info}/top_level.txt +0 -0
KekikStream/Plugins/DiziYou.py
CHANGED
@@ -7,7 +7,7 @@ import re
|
|
7
7
|
class DiziYou(PluginBase):
|
8
8
|
name = "DiziYou"
|
9
9
|
language = "tr"
|
10
|
-
main_url = "https://www.
|
10
|
+
main_url = "https://www.diziyou2.com"
|
11
11
|
favicon = f"https://www.google.com/s2/favicons?domain={main_url}&sz=64"
|
12
12
|
description = "Diziyou en kaliteli Türkçe dublaj ve altyazılı yabancı dizi izleme sitesidir. Güncel ve efsanevi dizileri 1080p Full HD kalitede izlemek için hemen tıkla!"
|
13
13
|
|
KekikStream/Plugins/UgurFilm.py
CHANGED
@@ -1,11 +1,42 @@
|
|
1
1
|
# Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
|
2
2
|
|
3
|
-
from KekikStream.Core import kekik_cache, PluginBase, SearchResult, MovieInfo
|
3
|
+
from KekikStream.Core import kekik_cache, PluginBase, MainPageResult, SearchResult, MovieInfo
|
4
4
|
from parsel import Selector
|
5
5
|
|
6
6
|
class UgurFilm(PluginBase):
|
7
|
-
name
|
8
|
-
|
7
|
+
name = "UgurFilm"
|
8
|
+
language = "tr"
|
9
|
+
main_url = "https://ugurfilm8.com"
|
10
|
+
favicon = f"https://www.google.com/s2/favicons?domain={main_url}&sz=64"
|
11
|
+
description = "Yabancı film izle, Türkçe dublaj ve Türkçe altyazılı film seçenekleriyle 720p ve 1080p HD kalitesinde film izle - Uğur Film full hd film izle."
|
12
|
+
|
13
|
+
main_page = {
|
14
|
+
f"{main_url}/turkce-altyazili-filmler/page/" : "Türkçe Altyazılı Filmler",
|
15
|
+
f"{main_url}/yerli-filmler/page/" : "Yerli Filmler",
|
16
|
+
f"{main_url}/en-cok-izlenen-filmler/page/" : "En Çok İzlenen Filmler",
|
17
|
+
f"{main_url}/category/kisa-film/page/" : "Kısa Film",
|
18
|
+
f"{main_url}/category/aksiyon/page/" : "Aksiyon",
|
19
|
+
f"{main_url}/category/bilim-kurgu/page/" : "Bilim Kurgu",
|
20
|
+
f"{main_url}/category/belgesel/page/" : "Belgesel",
|
21
|
+
f"{main_url}/category/komedi/page/" : "Komedi",
|
22
|
+
f"{main_url}/category/kara-film/page/" : "Kara Film",
|
23
|
+
f"{main_url}/category/erotik/page/" : "Erotik"
|
24
|
+
}
|
25
|
+
|
26
|
+
@kekik_cache(ttl=60*60)
|
27
|
+
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
28
|
+
istek = await self.httpx.get(f"{url}{page}", follow_redirects=True)
|
29
|
+
secici = Selector(istek.text)
|
30
|
+
|
31
|
+
return [
|
32
|
+
MainPageResult(
|
33
|
+
category = category,
|
34
|
+
title = veri.css("span:nth-child(1)::text").get(),
|
35
|
+
url = self.fix_url(veri.css("a::attr(href)").get()),
|
36
|
+
poster = self.fix_url(veri.css("img::attr(src)").get()),
|
37
|
+
)
|
38
|
+
for veri in secici.css("div.icerik div") if veri.css("span:nth-child(1)::text").get()
|
39
|
+
]
|
9
40
|
|
10
41
|
@kekik_cache(ttl=60*60)
|
11
42
|
async def search(self, query: str) -> list[SearchResult]:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: KekikStream
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.6
|
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,7 +44,7 @@ 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=yiLHe9cP_eG8CG6lcQ8KYEzDckjFUL3cw0A-1ixCLbg,7995
|
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
|
@@ -54,10 +54,10 @@ KekikStream/Plugins/RecTV.py,sha256=rjsaz1OZGqJAHHvmm1rzpD99K23jb9rx55zhu03BPOk,
|
|
54
54
|
KekikStream/Plugins/SezonlukDizi.py,sha256=IvmOB6qCEHBy41BS4KFBjsTegmzEF6l-2l_CvamYrW8,6099
|
55
55
|
KekikStream/Plugins/Shorten.py,sha256=dDYt89WX-CcDhJAAV2A4zaD4xcZa8aN6-YcAcseyVo4,8948
|
56
56
|
KekikStream/Plugins/SineWix.py,sha256=cFqwn8B4M-WJWJlMuCrvv0JyKPv953iDqCLbGyy8Xu0,7145
|
57
|
-
KekikStream/Plugins/UgurFilm.py,sha256=
|
58
|
-
kekikstream-1.3.
|
59
|
-
kekikstream-1.3.
|
60
|
-
kekikstream-1.3.
|
61
|
-
kekikstream-1.3.
|
62
|
-
kekikstream-1.3.
|
63
|
-
kekikstream-1.3.
|
57
|
+
KekikStream/Plugins/UgurFilm.py,sha256=tChGgiAeQeVUqHqrVXDz_eMIyghOHqKuHJb0pCQqs1M,4724
|
58
|
+
kekikstream-1.3.6.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
59
|
+
kekikstream-1.3.6.dist-info/METADATA,sha256=O2nvzlH-UCr5hwbEXxMs1q-8FP00TprZg97yZPqr6vc,4508
|
60
|
+
kekikstream-1.3.6.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
61
|
+
kekikstream-1.3.6.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
|
62
|
+
kekikstream-1.3.6.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
|
63
|
+
kekikstream-1.3.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|