KekikStream 2.3.1__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.
@@ -7,7 +7,7 @@ import re
7
7
  class DiziPal(PluginBase):
8
8
  name = "DiziPal"
9
9
  language = "tr"
10
- main_url = "https://dizipal1224.com"
10
+ main_url = "https://dizipal1225.com"
11
11
  favicon = f"https://www.google.com/s2/favicons?domain={main_url}&sz=64"
12
12
  description = "dizipal güncel, dizipal yeni ve gerçek adresi. dizipal en yeni dizi ve filmleri güvenli ve hızlı şekilde sunar."
13
13
 
@@ -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: re_first ile regex
113
+ # Year: önce div.yayin-tarihi.info dene
114
+ year = None
114
115
  year_el = secici.css_first("div.yayin-tarihi.info")
115
- year_text = year_el.text(strip=True) if year_el else ""
116
- year_match = re.search(r"(\d{4})", year_text)
117
- year = year_match.group(1) if year_match else None
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: others div'den önceki div içindeki text
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.1
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
@@ -52,13 +52,13 @@ KekikStream/Extractors/YTDLP.py,sha256=Hy8loCSFSquu2zaL3INord-Jm6T8CM6K2-VcDA2K7
52
52
  KekikStream/Extractors/YildizKisaFilm.py,sha256=R_JlrOVeMiDlXYcuTdItnKvidyx8_u3B14fSrxew2aE,1316
53
53
  KekikStream/Plugins/BelgeselX.py,sha256=Rr8fxpAOjApBVLH0r6f8xxxWVw8csyYF6HR8UQ_Nh4w,8930
54
54
  KekikStream/Plugins/DiziBox.py,sha256=2RGkYEpKsoznE0Gr822-Cw7n-aF_cjyi7Z-79RdJFao,11754
55
- KekikStream/Plugins/DiziPal.py,sha256=oo8pA6mfgpZoZV7B6EBwMec4dlUkMlDpaLnvQsxVhg0,11481
55
+ KekikStream/Plugins/DiziPal.py,sha256=Cr3jg8BExhoqWXxyQd-XzS4MUwIvyPtWLB92WJMm_tU,11481
56
56
  KekikStream/Plugins/DiziYou.py,sha256=52JCeNG9l6xUHp_Q_Q812TSe-WI2FkqEc82WtD7uZA0,10447
57
57
  KekikStream/Plugins/Dizilla.py,sha256=nVKpKxv4FJx0ifhz76ugi73i78gSwLzr-TYMh8lMxXs,14582
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=B8ckb2TftuzfAgxNBs_rkIuAHc9YNVqjG_H9Y3QqGQM,10822
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.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
78
- kekikstream-2.3.1.dist-info/METADATA,sha256=DPkT2_z1KRVJpBXa7WUeibtryqu8V1icKZu1G8VdVxU,10761
79
- kekikstream-2.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
- kekikstream-2.3.1.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
81
- kekikstream-2.3.1.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
82
- kekikstream-2.3.1.dist-info/RECORD,,
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,,