KekikStream 2.4.0__py3-none-any.whl → 2.4.1__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.
@@ -0,0 +1,45 @@
1
+ # Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
2
+
3
+ from KekikStream.Core import ExtractorBase, ExtractResult, HTMLHelper
4
+ from Kekik.Sifreleme import AESManager
5
+ import re
6
+ import json
7
+
8
+ class HotStream(ExtractorBase):
9
+ name = "HotStream"
10
+ main_url = "https://hotstream.club"
11
+
12
+ async def extract(self, url: str, referer: str = None) -> ExtractResult | None:
13
+ if referer:
14
+ self.httpx.headers.update({"Referer": referer})
15
+
16
+ istek = await self.httpx.get(url)
17
+ html = istek.text
18
+ helper = HTMLHelper(html)
19
+
20
+ m = re.search(r"bePlayer\('([^']+)',\s*'(\{[^']+\})'\)", html)
21
+ if not m:
22
+ # Try double quotes just in case
23
+ m = re.search(r'bePlayer\("([^"]+)",\s*"(\{[^"]+\})"\)', html)
24
+
25
+ if m:
26
+ pass_val = m.group(1)
27
+ data_val = m.group(2)
28
+
29
+ try:
30
+ decrypted = AESManager.decrypt(data_val, pass_val)
31
+ if decrypted:
32
+ decrypted = decrypted.replace("\\", "")
33
+ # Search for video_location in decrypted string
34
+ m_loc = re.search(r'"video_location":"([^"]+)"', decrypted)
35
+ if m_loc:
36
+ video_url = m_loc.group(1).replace(r"\/", "/")
37
+ return ExtractResult(
38
+ name = self.name,
39
+ url = video_url,
40
+ referer = url
41
+ )
42
+ except Exception:
43
+ pass
44
+
45
+ return None
@@ -0,0 +1,25 @@
1
+ # Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
2
+
3
+ from KekikStream.Core import ExtractorBase, ExtractResult, HTMLHelper
4
+
5
+ class Vidoza(ExtractorBase):
6
+ name = "Vidoza"
7
+ main_url = "https://vidoza.net"
8
+
9
+ async def extract(self, url: str, referer: str = None) -> ExtractResult | None:
10
+ if referer:
11
+ self.httpx.headers.update({"Referer": referer})
12
+
13
+ istek = await self.httpx.get(url)
14
+ helper = HTMLHelper(istek.text)
15
+
16
+ video_url = helper.select_attr("source", "src")
17
+
18
+ if video_url:
19
+ return ExtractResult(
20
+ name = self.name,
21
+ url = video_url,
22
+ referer = url
23
+ )
24
+
25
+ return None
@@ -77,15 +77,16 @@ class DiziMom(PluginBase):
77
77
  rating = None
78
78
  actors = None
79
79
 
80
- # Regex approach for specific fields might be safer/easier if structure varies
81
- # Matches: Yapım Yılı : </span> 2025
82
- year_val = helper.regex_first(r"Yapım Yılı\s*:\s*(?:</span>)?\s*(\d{4})")
83
- if year_val:
84
- year = int(year_val)
80
+ # Regex approach based on debug output (multiline support)
81
+ # Context: <span class="dizimeta"><i class="fas fa-globe"></i> Yapım Yılı : </span>\n 2022
82
+ year_val_all = helper.regex_all(r"Yapım Yılı\s*:\s*(?:</span>)?\s*(\d{4})", flags=re.DOTALL)
83
+ if year_val_all:
84
+ year = int(year_val_all[0])
85
85
 
86
- rating_val = helper.regex_first(r"IMDB\s*:\s*([\d\.]+)")
87
- if rating_val:
88
- rating = rating_val
86
+ # Context: <span class="dizimeta"><i class="fas fa-star"></i> IMDB : </span>\n 4.5
87
+ rating_val_all = helper.regex_all(r"IMDB\s*:\s*(?:</span>)?\s*([\d\.]+)", flags=re.DOTALL)
88
+ if rating_val_all:
89
+ rating = rating_val_all[0]
89
90
 
90
91
  actors_val = helper.regex_first(r"Oyuncular\s*:\s*(.+?)(?:</div>|<br|$)")
91
92
  if not actors_val:
@@ -127,8 +128,6 @@ class DiziMom(PluginBase):
127
128
 
128
129
  # Clean footer text start
129
130
  # The footer block usually starts with "Dizimom, dizi ve film..."
130
- # If we find "Dizimom," and it's not at the start (meaning it's part of the footer appended), split there.
131
- # Note: The description might legitimately start with "Dizimom," strictly speaking, but unlikely for a series description.
132
131
  if "Dizimom," in description_raw:
133
132
  description = description_raw.split("Dizimom,")[0].strip()
134
133
  elif "dizi izle film izle" in description_raw:
@@ -3,6 +3,7 @@
3
3
  from KekikStream.Core import PluginBase, MainPageResult, SearchResult, MovieInfo, SeriesInfo, Episode, ExtractResult, HTMLHelper
4
4
  import re
5
5
  from json import loads
6
+ from urllib.parse import unquote
6
7
 
7
8
  class Filmatek(PluginBase):
8
9
  name = "Filmatek"
@@ -97,8 +98,15 @@ class Filmatek(PluginBase):
97
98
  year_text = helper.select_text("span.date")
98
99
  year = year_text.strip()[-4:] if year_text else None
99
100
 
100
- score_text = helper.select_text("span.dt_rating_vmanual")
101
- rating = score_text.strip() if score_text else None
101
+ # Rating extraction updated
102
+ rating = helper.select_text("span.dt_rating_vgs") or helper.select_text("span.dt_rating_vmanual")
103
+
104
+ # Duration extraction
105
+ duration = None
106
+ duration_text = helper.select_text("span.runtime")
107
+ if duration_text:
108
+ # "80 Dak." -> "80"
109
+ duration = duration_text.split()[0]
102
110
 
103
111
  tags = helper.select_all_text("div.sgeneros a")
104
112
 
@@ -118,6 +126,7 @@ class Filmatek(PluginBase):
118
126
  poster = poster,
119
127
  year = year,
120
128
  rating = rating,
129
+ duration = duration,
121
130
  tags = tags,
122
131
  actors = actors
123
132
  )
@@ -169,6 +178,14 @@ class Filmatek(PluginBase):
169
178
 
170
179
  iframe_url = self.fix_url(iframe_url)
171
180
 
181
+ # Unwrap internal JWPlayer
182
+ if "jwplayer/?source=" in iframe_url:
183
+ try:
184
+ raw_source = iframe_url.split("source=")[1].split("&")[0]
185
+ iframe_url = unquote(raw_source)
186
+ except:
187
+ pass
188
+
172
189
  extracted = await self.extract(iframe_url)
173
190
  if extracted:
174
191
  if isinstance(extracted, list):
@@ -11,16 +11,31 @@ class Full4kizle(PluginBase):
11
11
  description = "Filmci Baba, film izleme sitesi 4k Full film izle, 1080p ve 4k kalite de sinema filmleri ve dizileri, tek parça hd kalitede türkçe dublajlı filmler seyret."
12
12
 
13
13
  main_page = {
14
- f"{main_url}/Kategori/en-populer-filmler/page" : "En Popüler Filmler",
15
- f"{main_url}/Kategori/vizyondaki-filmler-izle/page" : "Vizyondaki Filmler",
16
- f"{main_url}/Kategori/yerli-filmler-izle/page" : "Yerli Filmler",
17
- f"{main_url}/Kategori/yabanci-diziler/page" : "Yabancı Diziler",
18
- f"{main_url}/Kategori/netflix-filmleri-izle/page" : "Netflix Filmleri",
19
- f"{main_url}/Kategori/netflix-dizileri/page" : "Netflix Dizileri",
20
- f"{main_url}/Kategori/anime-izle/page" : "Anime İzle",
21
- f"{main_url}/Kategori/cizgi-filmler/page" : "Çizgi Filmler",
14
+ f"{main_url}/Kategori/en-populer-filmler/page" : "En Popüler Filmler",
15
+ f"{main_url}/Kategori/tur/aksiyon-filmleri/page" : "Aksiyon",
16
+ f"{main_url}/Kategori/tur/macera-filmleri/page" : "Macera",
17
+ f"{main_url}/Kategori/tur/bilim-kurgu-filmleri/page" : "Bilim Kurgu",
18
+ f"{main_url}/Kategori/tur/fantastik-filmler/page" : "Fantastik",
19
+ f"{main_url}/Kategori/tur/korku-filmleri/page" : "Korku",
20
+ f"{main_url}/Kategori/tur/gerilim-filmleri-hd/page" : "Gerilim",
21
+ f"{main_url}/Kategori/tur/gizem-filmleri/page" : "Gizem",
22
+ f"{main_url}/Kategori/tur/dram-filmleri-hd/page" : "Dram",
23
+ f"{main_url}/Kategori/tur/komedi-filmleri-hd/page" : "Komedi",
24
+ f"{main_url}/Kategori/tur/romantik-filmler/page" : "Romantik",
25
+ f"{main_url}/Kategori/tur/aile-filmleri/page" : "Aile",
26
+ f"{main_url}/Kategori/tur/animasyon-filmleri/page" : "Animasyon",
27
+ f"{main_url}/Kategori/tur/biyografi-filmleri/page" : "Biyografi",
28
+ f"{main_url}/Kategori/tur/polisiye-suc-filmleri/page" : "Polisiye / Suç",
29
+ f"{main_url}/Kategori/tur/savas-filmleri/page" : "Savaş",
30
+ f"{main_url}/Kategori/tur/western-filmler/page" : "Western",
31
+ f"{main_url}/Kategori/tur/hint-filmleri/page" : "Hint Filmleri",
32
+ f"{main_url}/Kategori/tur/kore-filmleri/page" : "Kore Filmleri",
33
+ f"{main_url}/Kategori/tur/yerli-filmler-izle/page" : "Yerli Filmler",
34
+ f"{main_url}/Kategori/tur/yerli-diziler/page" : "Yerli Diziler",
35
+ f"{main_url}/Kategori/tur/18-erotik-filmler/page" : "+18 Erotik Filmler",
22
36
  }
23
37
 
38
+
24
39
  async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
25
40
  target_url = f"{url}/{page}/"
26
41
  istek = await self.httpx.get(target_url)
@@ -92,14 +107,81 @@ class Full4kizle(PluginBase):
92
107
 
93
108
  description = helper.select_text(".excerpt p")
94
109
 
95
- year_text = helper.select_text(".release a")
96
- year = year_text.strip() if year_text else None
110
+ # Robust metadata extraction using Regex
111
+
112
+ # Initialize year first
113
+ year = None
97
114
 
115
+ # Try .release first (legacy) or directly regex
116
+ rel_text = helper.select_text(".release")
117
+ if rel_text:
118
+ m_y = re.search(r"(\d{4})", rel_text)
119
+ if m_y: year = m_y.group(1)
120
+
121
+ # Year fallbacks
122
+ if not year:
123
+ # Try finding year in text like "Yapım: 2024" or just isolated year in release date
124
+ m_year = helper.regex_first(r"Yapım:\s*(\d{4})") or helper.regex_first(r"Yıl:\s*(\d{4})")
125
+ if m_year:
126
+ year = m_year
127
+
128
+ # Rating
98
129
  rating_text = helper.select_text(".imdb-rating")
99
- rating = None
100
130
  if rating_text:
101
- rating_text = rating_text.replace("IMDB Puanı", "").strip()
102
- rating = rating_text
131
+ rating = rating_text.replace("IMDB Puanı", "").strip()
132
+ else:
133
+ rating = helper.regex_first(r"IMDB\s*:\s*([\d\.]+)")
134
+
135
+ # Duration
136
+ duration = None
137
+ duration_val = helper.regex_first(r"Süre:\s*(\d+)")
138
+ if duration_val:
139
+ duration = int(duration_val)
140
+
141
+ # Actors - Extract from actor links
142
+ actors = None
143
+ actors_list = []
144
+
145
+ # Site uses: <a href=".../oyuncular/...">Actor Name</a>
146
+ actor_els = helper.select("a[href*='/oyuncular/']")
147
+ if actor_els:
148
+ actors_list = [el.text(strip=True) for el in actor_els if el.text(strip=True)]
149
+
150
+ # Fallback: Try .cast-list selector
151
+ if not actors_list:
152
+ actor_els = helper.select(".cast-list .actor-name, .cast-list a")
153
+ if actor_els:
154
+ actors_list = [el.text(strip=True) for el in actor_els if el.text(strip=True)]
155
+
156
+ if actors_list:
157
+ actors = ", ".join(actors_list)
158
+
159
+
160
+ # Tags (Genres) - Extract from genre links
161
+ tags = None
162
+ tags_list = []
163
+
164
+ # Site uses: <a href=".../tur/...">Genre Name</a> or <a href=".../Kategori/tur/...">
165
+ tag_els = helper.select("a[href*='/tur/'], a[href*='/Kategori/tur/']")
166
+ if tag_els:
167
+ tags_list = [el.text(strip=True) for el in tag_els if el.text(strip=True)]
168
+
169
+ # Fallback: Try .genres selector
170
+ if not tags_list:
171
+ tag_els = helper.select(".genres a, .genre a")
172
+ if tag_els:
173
+ tags_list = [el.text(strip=True) for el in tag_els if el.text(strip=True)]
174
+
175
+ # Remove duplicates while preserving order
176
+ if tags_list:
177
+ seen = set()
178
+ unique_tags = []
179
+ for tag in tags_list:
180
+ if tag not in seen:
181
+ seen.add(tag)
182
+ unique_tags.append(tag)
183
+ tags = unique_tags if unique_tags else None
184
+
103
185
 
104
186
  # Check for Episodes to decide if Series or Movie
105
187
  ep_elements = helper.select(".parts-middle a, .parts-middle .part.active")
@@ -113,8 +195,9 @@ class Full4kizle(PluginBase):
113
195
  poster = poster,
114
196
  year = year,
115
197
  rating = rating,
116
- tags = None, # Tags usually in genres list, implementation skipped for now or add if easy
117
- actors = None # Actors not extracted in Kotlin reference provided
198
+ duration = duration,
199
+ tags = tags,
200
+ actors = actors
118
201
  )
119
202
  else:
120
203
  # Series
@@ -155,8 +238,9 @@ class Full4kizle(PluginBase):
155
238
  poster = poster,
156
239
  year = year,
157
240
  rating = rating,
158
- tags = None,
159
- actors = None,
241
+ duration = duration,
242
+ tags = tags,
243
+ actors = actors,
160
244
  episodes = episodes
161
245
  )
162
246
 
@@ -12,12 +12,34 @@ class Watch32(PluginBase):
12
12
  description = "Watch Your Favorite Movies &amp; TV Shows Online - Streaming For Free. With Movies &amp; TV Shows Full HD. Find Your Movies &amp; Watch NOW!"
13
13
 
14
14
  main_page = {
15
- f"{main_url}/movie?page=" : "Popular Movies",
16
- f"{main_url}/tv-show?page=" : "Popular TV Shows",
17
- f"{main_url}/coming-soon?page=" : "Coming Soon",
18
- f"{main_url}/top-imdb?page=" : "Top IMDB Rating",
15
+ # Main Categories
16
+ f"{main_url}/movie?page=" : "Popular Movies",
17
+ f"{main_url}/tv-show?page=" : "Popular TV Shows",
18
+ f"{main_url}/coming-soon?page=" : "Coming Soon",
19
+ f"{main_url}/top-imdb?page=" : "Top IMDB Rating",
20
+ # Genre Categories
21
+ f"{main_url}/genre/action?page=" : "Action",
22
+ f"{main_url}/genre/adventure?page=" : "Adventure",
23
+ f"{main_url}/genre/animation?page=" : "Animation",
24
+ f"{main_url}/genre/biography?page=" : "Biography",
25
+ f"{main_url}/genre/comedy?page=" : "Comedy",
26
+ f"{main_url}/genre/crime?page=" : "Crime",
27
+ f"{main_url}/genre/documentary?page=" : "Documentary",
28
+ f"{main_url}/genre/drama?page=" : "Drama",
29
+ f"{main_url}/genre/family?page=" : "Family",
30
+ f"{main_url}/genre/fantasy?page=" : "Fantasy",
31
+ f"{main_url}/genre/history?page=" : "History",
32
+ f"{main_url}/genre/horror?page=" : "Horror",
33
+ f"{main_url}/genre/music?page=" : "Music",
34
+ f"{main_url}/genre/mystery?page=" : "Mystery",
35
+ f"{main_url}/genre/romance?page=" : "Romance",
36
+ f"{main_url}/genre/science-fiction?page=" : "Science Fiction",
37
+ f"{main_url}/genre/thriller?page=" : "Thriller",
38
+ f"{main_url}/genre/war?page=" : "War",
39
+ f"{main_url}/genre/western?page=" : "Western",
19
40
  }
20
41
 
42
+
21
43
  async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
22
44
  istek = await self.httpx.get(f"{url}{page}")
23
45
  helper = HTMLHelper(istek.text)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: KekikStream
3
- Version: 2.4.0
3
+ Version: 2.4.1
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
@@ -25,6 +25,7 @@ KekikStream/Extractors/ExPlay.py,sha256=G2ZmXGcsjpZ5ihtL0ZYkyVO8nPuzSC_8AR0zvED6
25
25
  KekikStream/Extractors/Filemoon.py,sha256=Dls1Y0HhYX4j5zJm9RP-9XFq1pzJ4eadL5Cp0uES_qo,3365
26
26
  KekikStream/Extractors/HDMomPlayer.py,sha256=5uP3L5iZ4jIf1I9QcT_cfTGs7qsHIMARDvkUPyc8uEk,2190
27
27
  KekikStream/Extractors/HDPlayerSystem.py,sha256=EgnFzx5Q4PkuwAtuff5SYU9k59B-CyOdySl7lbCZ9hM,1312
28
+ KekikStream/Extractors/HotStream.py,sha256=DO6RFfx2dycVIJ67GR7v9e1Skqz4MwKs49y-VxtiVic,1605
28
29
  KekikStream/Extractors/JFVid.py,sha256=_6A0zmYrWZxIfkCCKAaNxMRLjU-_0Z0hCxCNSApcknk,1350
29
30
  KekikStream/Extractors/JetTv.py,sha256=2X1vYDQ0hxBTcpnE_XTcbw9tMS1aXFURcobnPdN8Zxg,1596
30
31
  KekikStream/Extractors/MailRu.py,sha256=xQVCWwYqNoG5T43VAW1_m0v4e80FbO-1pNPKkwhTccU,1218
@@ -51,11 +52,12 @@ KekikStream/Extractors/VidMoxy.py,sha256=dM7yBfrXSESvYyqc2uP_gLSgV61gpIAY940NAQ5
51
52
  KekikStream/Extractors/VidPapi.py,sha256=9y8TN-o4C3JvRyr2V8Ox908tFE1I2BItQLHZlqs8AuI,3175
52
53
  KekikStream/Extractors/VideoSeyred.py,sha256=KJxbJkuupmn4wWBj_ejnoDvmjUXwEXkzStYha3EsSpA,1995
53
54
  KekikStream/Extractors/Videostr.py,sha256=epoWgLta1TpewK4opDnBXHI8Nu4pDupb5ehsqCLf4h8,4523
55
+ KekikStream/Extractors/Vidoza.py,sha256=xr1A9C-YS9nQTaxquWYNUNU5MF2oBzELP7t06SyM67s,768
54
56
  KekikStream/Extractors/YTDLP.py,sha256=Hy8loCSFSquu2zaL3INord-Jm6T8CM6K2-VcDA2K79g,7390
55
57
  KekikStream/Extractors/YildizKisaFilm.py,sha256=R_JlrOVeMiDlXYcuTdItnKvidyx8_u3B14fSrxew2aE,1316
56
58
  KekikStream/Plugins/BelgeselX.py,sha256=smoLjEJTdptjb7h4m6LhG7ZUmJQtIhYyi0CUFBsk970,8696
57
59
  KekikStream/Plugins/DiziBox.py,sha256=KZGWhs6p2-hUTsd-fjz2fsmGEkanL4At2PI8qHAoDm4,10541
58
- KekikStream/Plugins/DiziMom.py,sha256=NPK42RNT5GRdVl8LxQSlFJK-vJEwwIISaOaGpcTkhkw,10359
60
+ KekikStream/Plugins/DiziMom.py,sha256=__z3lwk7hcTYa-JWmD1GLp0iGvNjTPTLJkpjAIXoZSE,10304
59
61
  KekikStream/Plugins/DiziPal.py,sha256=tHUqAN8UvvzBAkJaGS4hFvdLo-eRO4EdQ_C9HYkj_0U,10576
60
62
  KekikStream/Plugins/DiziYou.py,sha256=4KOvxHg-84mUHuHWsXoYlIG2SX4DCV2dm6GblHQ5wGo,11162
61
63
  KekikStream/Plugins/Dizilla.py,sha256=PLN0pOkWB4IaGC7Toe-8f5rksmaNm_WfdSFMTAtt--0,13624
@@ -63,8 +65,8 @@ KekikStream/Plugins/FilmBip.py,sha256=40eSECwMHSKTWoUmF90UXxTJkbx6f71J_98Ht4Hnoj
63
65
  KekikStream/Plugins/FilmEkseni.py,sha256=W4XvIUVNs98-JIfnt6KgYLrcJQ3_jLk9dYYX0CrqW0A,5808
64
66
  KekikStream/Plugins/FilmMakinesi.py,sha256=0bVN28aCEfrxrvXrGyL6XtgipzUKUD9vN2QkHie2gY0,7859
65
67
  KekikStream/Plugins/FilmModu.py,sha256=ou1BrFNR4RQaJdxVqPB5FI8vnQ0UmD-siVdwLnpp7x0,7147
66
- KekikStream/Plugins/Filmatek.py,sha256=0bMY1T0rMttwOUiI6tUp4gmzYHnK1MoiLSjHHLwp5no,7140
67
- KekikStream/Plugins/Full4kizle.py,sha256=9-d22cEmCg0BuHrhFx597zHmQ4Q_zaBHtI4-he318Fw,7566
68
+ KekikStream/Plugins/Filmatek.py,sha256=6Sf_2Lg6dARyQCZ75XYQz7DUBASeRfRhUqBG1fsXJaQ,7820
69
+ KekikStream/Plugins/Full4kizle.py,sha256=0R1ctX5W2UuLyMtjSNFL4AK-pblAAdZfBjj3uTzfGho,11101
68
70
  KekikStream/Plugins/FullHDFilm.py,sha256=08NF5qEydmxT0rGYDWpTOSIYSad8Uv1H1V8yCKG_568,10525
69
71
  KekikStream/Plugins/FullHDFilmizlesene.py,sha256=OpdndVQ7LjZ-sJdILGEqhYX-0D18yRqTS7Kpu-HrXmY,6870
70
72
  KekikStream/Plugins/HDFilmCehennemi.py,sha256=jntMKgE81k_jl3pFzJI3akqvi3g8U961dVx7bj5Pf2w,13140
@@ -81,11 +83,11 @@ KekikStream/Plugins/SinemaCX.py,sha256=11kzAZWgjkitIonDHHiFHMgnViBj-GjyvTXg7k28M
81
83
  KekikStream/Plugins/Sinezy.py,sha256=fUj-3WaJMEsKZRnDpHFPxl5Eq2RPLroY80DcftLqvjM,5743
82
84
  KekikStream/Plugins/SuperFilmGeldi.py,sha256=StW0ue4qDj8p7CiWy19Lfr2aWtfYvslPExZJuR-3xiY,6348
83
85
  KekikStream/Plugins/UgurFilm.py,sha256=H6AA2iTaM0fn6uN8_Dfvr-OqUtM9gDdkg0BKIcZEj7U,4930
84
- KekikStream/Plugins/Watch32.py,sha256=BrtdX_HJQVgxK2SRnu03Wb9ubGF5C5W_JECnOORhIzs,7930
86
+ KekikStream/Plugins/Watch32.py,sha256=FXP5TGpxrYJEKCIjqxJlaIjhXhoXml80l8fZp1ImgEw,9099
85
87
  KekikStream/Plugins/YabanciDizi.py,sha256=QXzifSl2JMcVOwkwn2vafYIw1jqB5vBTrf-usvsyMBc,11947
86
- kekikstream-2.4.0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
87
- kekikstream-2.4.0.dist-info/METADATA,sha256=AdLUoeRQNujGkuwuF5CU-28zxWFfNH_58MdK83CY1m4,10745
88
- kekikstream-2.4.0.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
89
- kekikstream-2.4.0.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
90
- kekikstream-2.4.0.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
91
- kekikstream-2.4.0.dist-info/RECORD,,
88
+ kekikstream-2.4.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
89
+ kekikstream-2.4.1.dist-info/METADATA,sha256=ZwqprBr4eqAzxY5M86iCsjjw2vF869DulL6cGhi71ac,10745
90
+ kekikstream-2.4.1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
91
+ kekikstream-2.4.1.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
92
+ kekikstream-2.4.1.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
93
+ kekikstream-2.4.1.dist-info/RECORD,,