KekikStream 2.3.2__py3-none-any.whl → 2.3.3__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/FullHDFilm.py +23 -6
- {kekikstream-2.3.2.dist-info → kekikstream-2.3.3.dist-info}/METADATA +1 -1
- {kekikstream-2.3.2.dist-info → kekikstream-2.3.3.dist-info}/RECORD +7 -7
- {kekikstream-2.3.2.dist-info → kekikstream-2.3.3.dist-info}/WHEEL +0 -0
- {kekikstream-2.3.2.dist-info → kekikstream-2.3.3.dist-info}/entry_points.txt +0 -0
- {kekikstream-2.3.2.dist-info → kekikstream-2.3.3.dist-info}/licenses/LICENSE +0 -0
- {kekikstream-2.3.2.dist-info → kekikstream-2.3.3.dist-info}/top_level.txt +0 -0
|
@@ -110,11 +110,23 @@ class FullHDFilm(PluginBase):
|
|
|
110
110
|
actors_text = actors_text.replace("Oyuncular:", "").strip()
|
|
111
111
|
actors = [a.strip() for a in actors_text.split(",")]
|
|
112
112
|
|
|
113
|
-
# Year:
|
|
113
|
+
# Year: önce div.yayin-tarihi.info dene
|
|
114
|
+
year = None
|
|
114
115
|
year_el = secici.css_first("div.yayin-tarihi.info")
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
if year_el:
|
|
117
|
+
year_text = year_el.text(strip=True)
|
|
118
|
+
year_match = re.search(r"(\d{4})", year_text)
|
|
119
|
+
if year_match:
|
|
120
|
+
year = year_match.group(1)
|
|
121
|
+
|
|
122
|
+
# Fallback: h1'in parent'ından (2019) formatında ara
|
|
123
|
+
if not year and title_el:
|
|
124
|
+
parent = title_el.parent
|
|
125
|
+
if parent:
|
|
126
|
+
parent_text = parent.text(strip=True)
|
|
127
|
+
year_match = re.search(r"\((\d{4})\)", parent_text)
|
|
128
|
+
if year_match:
|
|
129
|
+
year = year_match.group(1)
|
|
118
130
|
|
|
119
131
|
tags = [a.text(strip=True) for a in secici.css("div.tur.info a") if a.text(strip=True)]
|
|
120
132
|
|
|
@@ -124,12 +136,17 @@ class FullHDFilm(PluginBase):
|
|
|
124
136
|
rating_match = re.search(r"IMDb\s*([\d\.]+)", rating_text)
|
|
125
137
|
rating = rating_match.group(1) if rating_match else None
|
|
126
138
|
|
|
127
|
-
# Description:
|
|
128
|
-
# XPath yerine basit yaklaşım: özet sınıfı ile veya ilk paragraf
|
|
139
|
+
# Description: önce div.film dene, yoksa og:description meta tag'ını kullan
|
|
129
140
|
description = None
|
|
130
141
|
desc_el = secici.css_first("div.film")
|
|
131
142
|
if desc_el:
|
|
132
143
|
description = desc_el.text(strip=True)
|
|
144
|
+
|
|
145
|
+
# Fallback: og:description meta tag'ı
|
|
146
|
+
if not description:
|
|
147
|
+
og_desc = secici.css_first("meta[property='og:description']")
|
|
148
|
+
if og_desc:
|
|
149
|
+
description = og_desc.attrs.get("content", "")
|
|
133
150
|
|
|
134
151
|
# Kotlin referansı: URL'de -dizi kontrolü veya tags içinde "dizi" kontrolü
|
|
135
152
|
is_series = "-dizi" in url.lower() or any("dizi" in tag.lower() for tag in tags)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: KekikStream
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.3
|
|
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
|
|
@@ -58,7 +58,7 @@ KekikStream/Plugins/Dizilla.py,sha256=nVKpKxv4FJx0ifhz76ugi73i78gSwLzr-TYMh8lMxX
|
|
|
58
58
|
KekikStream/Plugins/FilmBip.py,sha256=tTp1gLHC1rVn0vY39jwxpF_fHC5_F0pqcCUCDItgHn0,7103
|
|
59
59
|
KekikStream/Plugins/FilmMakinesi.py,sha256=tjNcTreesqJCIby1uloLMl2e_dnaUtJe2Wbp7FhzjlY,8733
|
|
60
60
|
KekikStream/Plugins/FilmModu.py,sha256=ZUrBAq1mK2na8YuZEmev64tGhLrql-n-KK1wYDLICn0,7730
|
|
61
|
-
KekikStream/Plugins/FullHDFilm.py,sha256=
|
|
61
|
+
KekikStream/Plugins/FullHDFilm.py,sha256=B0wXwu_hcuoMxoBoecfylaOp6EPXOzWcgr90Ei1LiuU,11430
|
|
62
62
|
KekikStream/Plugins/FullHDFilmizlesene.py,sha256=Y6wzW4JnALT91FR_RAmbi1KhM6m7NYlCBh8UGXkKeSs,7900
|
|
63
63
|
KekikStream/Plugins/HDFilmCehennemi.py,sha256=JDW1FifATpO46fvgzLno9lCLufaORek6nayHTgui0zY,13872
|
|
64
64
|
KekikStream/Plugins/JetFilmizle.py,sha256=zqSk1NbOsClViJfETX64jiqREaEDfRskQseIBOzwl-c,8860
|
|
@@ -74,9 +74,9 @@ KekikStream/Plugins/SinemaCX.py,sha256=6mYz7Yqja_weEfCiLrzMhji1eiSKaYHj0vX4aomDW
|
|
|
74
74
|
KekikStream/Plugins/Sinezy.py,sha256=zBpxUpIIfdnZdolPdkxLMkTsWeGUMW1lht3dNwp_AYU,6756
|
|
75
75
|
KekikStream/Plugins/SuperFilmGeldi.py,sha256=zrTMpAP4NTxhQ4lgprBPXkihE7oQu2jNY7IFA7NWWYA,7144
|
|
76
76
|
KekikStream/Plugins/UgurFilm.py,sha256=S4Zrml9I3W3iW_2feLJWSkvsVZHpQQQlXRJk4E8li-c,5999
|
|
77
|
-
kekikstream-2.3.
|
|
78
|
-
kekikstream-2.3.
|
|
79
|
-
kekikstream-2.3.
|
|
80
|
-
kekikstream-2.3.
|
|
81
|
-
kekikstream-2.3.
|
|
82
|
-
kekikstream-2.3.
|
|
77
|
+
kekikstream-2.3.3.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
78
|
+
kekikstream-2.3.3.dist-info/METADATA,sha256=j_xVq9W3kwCvENDYhvPB2pF-m1hTdofZZli6Q5vOAoc,10761
|
|
79
|
+
kekikstream-2.3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
80
|
+
kekikstream-2.3.3.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
|
|
81
|
+
kekikstream-2.3.3.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
|
|
82
|
+
kekikstream-2.3.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|