KekikStream 1.3.2__py3-none-any.whl → 1.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/Core/Media/MediaHandler.py +4 -4
- KekikStream/Extractors/CloseLoad.py +0 -1
- KekikStream/Plugins/HDFilmCehennemi.py +38 -3
- KekikStream/Plugins/JetFilmizle.py +32 -4
- KekikStream/Plugins/RecTV.py +41 -6
- KekikStream/Plugins/SezonlukDizi.py +3 -3
- KekikStream/Plugins/Shorten.py +3 -3
- KekikStream/Plugins/SineWix.py +4 -4
- KekikStream/Plugins/UgurFilm.py +3 -3
- {kekikstream-1.3.2.dist-info → kekikstream-1.3.3.dist-info}/METADATA +1 -1
- {kekikstream-1.3.2.dist-info → kekikstream-1.3.3.dist-info}/RECORD +15 -15
- {kekikstream-1.3.2.dist-info → kekikstream-1.3.3.dist-info}/LICENSE +0 -0
- {kekikstream-1.3.2.dist-info → kekikstream-1.3.3.dist-info}/WHEEL +0 -0
- {kekikstream-1.3.2.dist-info → kekikstream-1.3.3.dist-info}/entry_points.txt +0 -0
- {kekikstream-1.3.2.dist-info → kekikstream-1.3.3.dist-info}/top_level.txt +0 -0
@@ -123,11 +123,11 @@ class MediaHandler:
|
|
123
123
|
subprocess.run(mpv_command, stdin=ytdlp_proc.stdout, check=True)
|
124
124
|
|
125
125
|
except subprocess.CalledProcessError as hata:
|
126
|
-
print(f"[red]Oynatma hatası: {hata}[/red]")
|
127
|
-
print({"title": self.title, "url": extract_data.url, "headers": self.headers})
|
126
|
+
konsol.print(f"[red]Oynatma hatası: {hata}[/red]")
|
127
|
+
konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
|
128
128
|
except FileNotFoundError:
|
129
|
-
print("[red]yt-dlp veya mpv bulunamadı! Kurulumlarından emin olun.[/red]")
|
130
|
-
print({"title": self.title, "url": extract_data.url, "headers": self.headers})
|
129
|
+
konsol.print("[red]yt-dlp veya mpv bulunamadı! Kurulumlarından emin olun.[/red]")
|
130
|
+
konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
|
131
131
|
|
132
132
|
def play_with_android_mxplayer(self, extract_data: ExtractResult):
|
133
133
|
konsol.log(f"[yellow][»] MxPlayer ile Oynatılıyor : {extract_data.url}")
|
@@ -1,12 +1,47 @@
|
|
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, ExtractResult, Subtitle
|
3
|
+
from KekikStream.Core import kekik_cache, PluginBase, MainPageResult, SearchResult, MovieInfo, ExtractResult, Subtitle
|
4
4
|
from parsel import Selector
|
5
5
|
import random, string
|
6
6
|
|
7
7
|
class HDFilmCehennemi(PluginBase):
|
8
|
-
name
|
9
|
-
|
8
|
+
name = "HDFilmCehennemi"
|
9
|
+
language = "tr"
|
10
|
+
main_url = "https://www.hdfilmcehennemi.nl"
|
11
|
+
favicon = f"https://www.google.com/s2/favicons?domain={main_url}&sz=64"
|
12
|
+
description = "Türkiye'nin en hızlı hd film izleme sitesi"
|
13
|
+
|
14
|
+
main_page = {
|
15
|
+
f"{main_url}" : "Yeni Eklenen Filmler",
|
16
|
+
f"{main_url}/yabancidiziizle-2" : "Yeni Eklenen Diziler",
|
17
|
+
f"{main_url}/category/tavsiye-filmler-izle2" : "Tavsiye Filmler",
|
18
|
+
f"{main_url}/imdb-7-puan-uzeri-filmler" : "IMDB 7+ Filmler",
|
19
|
+
f"{main_url}/en-cok-yorumlananlar-1" : "En Çok Yorumlananlar",
|
20
|
+
f"{main_url}/en-cok-begenilen-filmleri-izle" : "En Çok Beğenilenler",
|
21
|
+
f"{main_url}/tur/aile-filmleri-izleyin-6" : "Aile Filmleri",
|
22
|
+
f"{main_url}/tur/aksiyon-filmleri-izleyin-3" : "Aksiyon Filmleri",
|
23
|
+
f"{main_url}/tur/animasyon-filmlerini-izleyin-4" : "Animasyon Filmleri",
|
24
|
+
f"{main_url}/tur/belgesel-filmlerini-izle-1" : "Belgesel Filmleri",
|
25
|
+
f"{main_url}/tur/bilim-kurgu-filmlerini-izleyin-2" : "Bilim Kurgu Filmleri",
|
26
|
+
f"{main_url}/tur/komedi-filmlerini-izleyin-1" : "Komedi Filmleri",
|
27
|
+
f"{main_url}/tur/korku-filmlerini-izle-2/" : "Korku Filmleri",
|
28
|
+
f"{main_url}/tur/romantik-filmleri-izle-1" : "Romantik Filmleri"
|
29
|
+
}
|
30
|
+
|
31
|
+
@kekik_cache(ttl=60*60)
|
32
|
+
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
33
|
+
istek = await self.httpx.get(f"{url}")
|
34
|
+
secici = Selector(istek.text)
|
35
|
+
|
36
|
+
return [
|
37
|
+
MainPageResult(
|
38
|
+
category = category,
|
39
|
+
title = veri.css("strong.poster-title::text").get(),
|
40
|
+
url = self.fix_url(veri.css("::attr(href)").get()),
|
41
|
+
poster = self.fix_url(veri.css("img::attr(data-src)").get()),
|
42
|
+
)
|
43
|
+
for veri in secici.css("div.section-content a.poster")
|
44
|
+
]
|
10
45
|
|
11
46
|
@kekik_cache(ttl=60*60)
|
12
47
|
async def search(self, query: str) -> list[SearchResult]:
|
@@ -1,11 +1,38 @@
|
|
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 JetFilmizle(PluginBase):
|
7
|
-
name
|
8
|
-
|
7
|
+
name = "JetFilmizle"
|
8
|
+
language = "tr"
|
9
|
+
main_url = "https://jetfilmizle.io"
|
10
|
+
favicon = f"https://www.google.com/s2/favicons?domain={main_url}&sz=64"
|
11
|
+
description = "Binlerce Film İzleme Seçeneğiyle En İyi Film İzleme Sitesi"
|
12
|
+
|
13
|
+
main_page = {
|
14
|
+
f"{main_url}/page/" : "Son Filmler",
|
15
|
+
f"{main_url}/netflix/page/" : "Netflix",
|
16
|
+
f"{main_url}/editorun-secimi/page/" : "Editörün Seçimi",
|
17
|
+
f"{main_url}/turk-film-izle/page/" : "Türk Filmleri",
|
18
|
+
f"{main_url}/cizgi-filmler-izle/page/" : "Çizgi Filmler",
|
19
|
+
f"{main_url}/kategoriler/yesilcam-filmleri-izlee/page/" : "Yeşilçam Filmleri"
|
20
|
+
}
|
21
|
+
|
22
|
+
@kekik_cache(ttl=60*60)
|
23
|
+
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
24
|
+
istek = await self.httpx.get(f"{url}{page}")
|
25
|
+
secici = Selector(istek.text)
|
26
|
+
|
27
|
+
return [
|
28
|
+
MainPageResult(
|
29
|
+
category = category,
|
30
|
+
title = self.clean_title(veri.css("h2 a::text, h3 a::text, h4 a::text, h5 a::text, h6 a::text").get()),
|
31
|
+
url = self.fix_url(veri.css("a::attr(href)").get()),
|
32
|
+
poster = self.fix_url(veri.css("img::attr(data-src)").get() or veri.css("img::attr(src)").get()),
|
33
|
+
)
|
34
|
+
for veri in secici.css("article.movie")
|
35
|
+
]
|
9
36
|
|
10
37
|
@kekik_cache(ttl=60*60)
|
11
38
|
async def search(self, query: str) -> list[SearchResult]:
|
@@ -43,7 +70,8 @@ class JetFilmizle(PluginBase):
|
|
43
70
|
description = secici.css("section.movie-exp p.aciklama::text").get().strip()
|
44
71
|
tags = secici.css("section.movie-exp div.catss a::text").getall()
|
45
72
|
rating = secici.css("section.movie-exp div.imdb_puan span::text").get().strip()
|
46
|
-
year = secici.xpath("//div[@class='yap' and (contains(., 'Vizyon') or contains(., 'Yapım'))]/text()").get()
|
73
|
+
year = secici.xpath("//div[@class='yap' and (contains(., 'Vizyon') or contains(., 'Yapım'))]/text()").get()
|
74
|
+
year = year.strip() if year else None
|
47
75
|
actors = secici.css("div[itemprop='actor'] a span::text").getall()
|
48
76
|
|
49
77
|
return MovieInfo(
|
KekikStream/Plugins/RecTV.py
CHANGED
@@ -1,19 +1,54 @@
|
|
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, Episode, SeriesInfo, ExtractResult, Subtitle
|
3
|
+
from KekikStream.Core import kekik_cache, PluginBase, MainPageResult, SearchResult, MovieInfo, Episode, SeriesInfo, ExtractResult, Subtitle
|
4
4
|
from httpx import AsyncClient
|
5
5
|
from json import dumps, loads
|
6
6
|
import re
|
7
7
|
|
8
8
|
class RecTV(PluginBase):
|
9
|
-
name
|
10
|
-
|
9
|
+
name = "RecTV"
|
10
|
+
language = "tr"
|
11
|
+
main_url = "https://a.prectv35.sbs"
|
12
|
+
favicon = f"https://www.google.com/s2/favicons?domain={main_url}&sz=64"
|
13
|
+
description = "RecTv APK, Türkiye’deki en popüler Çevrimiçi Medya Akış platformlarından biridir. Filmlerin, Canlı Sporların, Web Dizilerinin ve çok daha fazlasının keyfini ücretsiz çıkarın."
|
11
14
|
|
12
15
|
sw_key = "4F5A9C3D9A86FA54EACEDDD635185/c3c5bd17-e37b-4b94-a944-8a3688a30452"
|
13
16
|
http2 = AsyncClient(http2=True)
|
14
17
|
http2.headers.update({"user-agent": "okhttp/4.12.0"})
|
15
18
|
|
16
|
-
|
19
|
+
main_page = {
|
20
|
+
f"{main_url}/api/channel/by/filtres/0/0/SAYFA/{sw_key}/" : "Canlı",
|
21
|
+
f"{main_url}/api/movie/by/filtres/0/created/SAYFA/{sw_key}/" : "Son Filmler",
|
22
|
+
f"{main_url}/api/serie/by/filtres/0/created/SAYFA/{sw_key}/" : "Son Diziler",
|
23
|
+
f"{main_url}/api/movie/by/filtres/14/created/SAYFA/{sw_key}/" : "Aile",
|
24
|
+
f"{main_url}/api/movie/by/filtres/1/created/SAYFA/{sw_key}/" : "Aksiyon",
|
25
|
+
f"{main_url}/api/movie/by/filtres/13/created/SAYFA/{sw_key}/" : "Animasyon",
|
26
|
+
f"{main_url}/api/movie/by/filtres/19/created/SAYFA/{sw_key}/" : "Belgesel",
|
27
|
+
f"{main_url}/api/movie/by/filtres/4/created/SAYFA/{sw_key}/" : "Bilim Kurgu",
|
28
|
+
f"{main_url}/api/movie/by/filtres/2/created/SAYFA/{sw_key}/" : "Dram",
|
29
|
+
f"{main_url}/api/movie/by/filtres/10/created/SAYFA/{sw_key}/" : "Fantastik",
|
30
|
+
f"{main_url}/api/movie/by/filtres/3/created/SAYFA/{sw_key}/" : "Komedi",
|
31
|
+
f"{main_url}/api/movie/by/filtres/8/created/SAYFA/{sw_key}/" : "Korku",
|
32
|
+
f"{main_url}/api/movie/by/filtres/17/created/SAYFA/{sw_key}/" : "Macera",
|
33
|
+
f"{main_url}/api/movie/by/filtres/5/created/SAYFA/{sw_key}/" : "Romantik"
|
34
|
+
}
|
35
|
+
|
36
|
+
@kekik_cache(ttl=60*60)
|
37
|
+
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
38
|
+
istek = await self.httpx.get(f"{url.replace('SAYFA', str(int(page) - 1))}")
|
39
|
+
veriler = istek.json()
|
40
|
+
|
41
|
+
return [
|
42
|
+
MainPageResult(
|
43
|
+
category = category,
|
44
|
+
title = self.clean_title(veri.get("title")),
|
45
|
+
url = dumps(veri),
|
46
|
+
poster = self.fix_url(veri.get("image")),
|
47
|
+
)
|
48
|
+
for veri in veriler
|
49
|
+
]
|
50
|
+
|
51
|
+
@kekik_cache(ttl=60*60)
|
17
52
|
async def search(self, query: str) -> list[SearchResult]:
|
18
53
|
self.media_handler.headers.update({"User-Agent": "googleusercontent"})
|
19
54
|
|
@@ -35,7 +70,7 @@ class RecTV(PluginBase):
|
|
35
70
|
for veri in tum_veri
|
36
71
|
]
|
37
72
|
|
38
|
-
kekik_cache(ttl=60*60)
|
73
|
+
@kekik_cache(ttl=60*60)
|
39
74
|
async def load_item(self, url: str) -> MovieInfo:
|
40
75
|
veri = loads(url)
|
41
76
|
|
@@ -86,7 +121,7 @@ class RecTV(PluginBase):
|
|
86
121
|
actors = []
|
87
122
|
)
|
88
123
|
|
89
|
-
kekik_cache(ttl=15*60)
|
124
|
+
@kekik_cache(ttl=15*60)
|
90
125
|
async def load_links(self, url: str) -> list[str]:
|
91
126
|
try:
|
92
127
|
veri = loads(url)
|
@@ -7,7 +7,7 @@ class SezonlukDizi(PluginBase):
|
|
7
7
|
name = "SezonlukDizi"
|
8
8
|
main_url = "https://sezonlukdizi6.com"
|
9
9
|
|
10
|
-
kekik_cache(ttl=60*60)
|
10
|
+
@kekik_cache(ttl=60*60)
|
11
11
|
async def search(self, query: str) -> list[SearchResult]:
|
12
12
|
istek = await self.httpx.get(f"{self.main_url}/diziler.asp?adi={query}")
|
13
13
|
secici = Selector(istek.text)
|
@@ -21,7 +21,7 @@ class SezonlukDizi(PluginBase):
|
|
21
21
|
for afis in secici.css("div.afis a.column")
|
22
22
|
]
|
23
23
|
|
24
|
-
kekik_cache(ttl=60*60)
|
24
|
+
@kekik_cache(ttl=60*60)
|
25
25
|
async def load_item(self, url: str) -> SeriesInfo:
|
26
26
|
istek = await self.httpx.get(url)
|
27
27
|
secici = Selector(istek.text)
|
@@ -73,7 +73,7 @@ class SezonlukDizi(PluginBase):
|
|
73
73
|
actors = actors
|
74
74
|
)
|
75
75
|
|
76
|
-
kekik_cache(ttl=15*60)
|
76
|
+
@kekik_cache(ttl=15*60)
|
77
77
|
async def load_links(self, url: str) -> list[str]:
|
78
78
|
istek = await self.httpx.get(url)
|
79
79
|
secici = Selector(istek.text)
|
KekikStream/Plugins/Shorten.py
CHANGED
@@ -155,7 +155,7 @@ class Shorten(PluginBase):
|
|
155
155
|
|
156
156
|
return veriler["data"]
|
157
157
|
|
158
|
-
kekik_cache(ttl=60*60)
|
158
|
+
@kekik_cache(ttl=60*60)
|
159
159
|
async def search(self, query: str) -> list[SearchResult]:
|
160
160
|
veriler = await self.raw_diziler()
|
161
161
|
|
@@ -168,7 +168,7 @@ class Shorten(PluginBase):
|
|
168
168
|
for veri in veriler
|
169
169
|
]
|
170
170
|
|
171
|
-
kekik_cache(ttl=60*60)
|
171
|
+
@kekik_cache(ttl=60*60)
|
172
172
|
async def load_item(self, url: str) -> MovieInfo:
|
173
173
|
veri = await self.bolumler(url)
|
174
174
|
|
@@ -205,7 +205,7 @@ class Shorten(PluginBase):
|
|
205
205
|
episodes = episodes,
|
206
206
|
)
|
207
207
|
|
208
|
-
kekik_cache(ttl=15*60)
|
208
|
+
@kekik_cache(ttl=15*60)
|
209
209
|
async def load_links(self, url: str) -> list[str]:
|
210
210
|
return [url]
|
211
211
|
|
KekikStream/Plugins/SineWix.py
CHANGED
@@ -34,7 +34,7 @@ class SineWix(PluginBase):
|
|
34
34
|
f"{main_url}/sinewix/movies/36" : "Tarih",
|
35
35
|
}
|
36
36
|
|
37
|
-
kekik_cache(ttl=60*60)
|
37
|
+
@kekik_cache(ttl=60*60)
|
38
38
|
async def get_main_page(self, page: int, url: str, category: str) -> list[MainPageResult]:
|
39
39
|
istek = await self.httpx.get(f"{url}/{page}")
|
40
40
|
veriler = istek.json()
|
@@ -49,7 +49,7 @@ class SineWix(PluginBase):
|
|
49
49
|
for veri in veriler.get("data")
|
50
50
|
]
|
51
51
|
|
52
|
-
kekik_cache(ttl=60*60)
|
52
|
+
@kekik_cache(ttl=60*60)
|
53
53
|
async def search(self, query: str) -> list[SearchResult]:
|
54
54
|
istek = await self.httpx.get(f"{self.main_url}/sinewix/search/{query}")
|
55
55
|
|
@@ -62,7 +62,7 @@ class SineWix(PluginBase):
|
|
62
62
|
for veri in istek.json().get("search")
|
63
63
|
]
|
64
64
|
|
65
|
-
kekik_cache(ttl=60*60)
|
65
|
+
@kekik_cache(ttl=60*60)
|
66
66
|
async def load_item(self, url: str) -> MovieInfo | SeriesInfo:
|
67
67
|
item_type = url.split("?type=")[-1].split("&id=")[0]
|
68
68
|
item_id = url.split("&id=")[-1]
|
@@ -125,7 +125,7 @@ class SineWix(PluginBase):
|
|
125
125
|
episodes = episodes,
|
126
126
|
)
|
127
127
|
|
128
|
-
kekik_cache(ttl=15*60)
|
128
|
+
@kekik_cache(ttl=15*60)
|
129
129
|
async def load_links(self, url: str) -> list[str]:
|
130
130
|
if not url.startswith(self.main_url):
|
131
131
|
return [url]
|
KekikStream/Plugins/UgurFilm.py
CHANGED
@@ -7,7 +7,7 @@ class UgurFilm(PluginBase):
|
|
7
7
|
name = "UgurFilm"
|
8
8
|
main_url = "https://ugurfilm8.com"
|
9
9
|
|
10
|
-
kekik_cache(ttl=60*60)
|
10
|
+
@kekik_cache(ttl=60*60)
|
11
11
|
async def search(self, query: str) -> list[SearchResult]:
|
12
12
|
istek = await self.httpx.get(f"{self.main_url}/?s={query}")
|
13
13
|
secici = Selector(istek.text)
|
@@ -29,7 +29,7 @@ class UgurFilm(PluginBase):
|
|
29
29
|
|
30
30
|
return results
|
31
31
|
|
32
|
-
kekik_cache(ttl=60*60)
|
32
|
+
@kekik_cache(ttl=60*60)
|
33
33
|
async def load_item(self, url: str) -> MovieInfo:
|
34
34
|
istek = await self.httpx.get(url)
|
35
35
|
secici = Selector(istek.text)
|
@@ -51,7 +51,7 @@ class UgurFilm(PluginBase):
|
|
51
51
|
actors = actors,
|
52
52
|
)
|
53
53
|
|
54
|
-
kekik_cache(ttl=15*60)
|
54
|
+
@kekik_cache(ttl=15*60)
|
55
55
|
async def load_links(self, url: str) -> list[str]:
|
56
56
|
istek = await self.httpx.get(url)
|
57
57
|
secici = Selector(istek.text)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: KekikStream
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.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
|
@@ -8,14 +8,14 @@ KekikStream/Core/Extractor/ExtractorBase.py,sha256=7dmYh5e1Za5N_pLJrTZRuwFh-CqwG
|
|
8
8
|
KekikStream/Core/Extractor/ExtractorLoader.py,sha256=7uxUXTAuF65KKkmbI6iRiCiUhx-IqrronB7ixhchcTU,4289
|
9
9
|
KekikStream/Core/Extractor/ExtractorManager.py,sha256=4L1H3jiTnf0kTq4W6uS7n95bBYHlKJ8_hh0og8z4erQ,1244
|
10
10
|
KekikStream/Core/Extractor/ExtractorModels.py,sha256=huIcPQ5VIRfMx0LcL5SS1u4dldZbHjzHKEdSEtOPlc0,456
|
11
|
-
KekikStream/Core/Media/MediaHandler.py,sha256=
|
11
|
+
KekikStream/Core/Media/MediaHandler.py,sha256=_cplsR-bt7s2oohY1Ngw0UyG427yQ-Fg0NQdAUzd0ec,6964
|
12
12
|
KekikStream/Core/Media/MediaManager.py,sha256=9ItiUguOkk3wg3YY5uf3mrjfwLPCvggnP8QviX0uiuE,526
|
13
13
|
KekikStream/Core/Plugin/PluginBase.py,sha256=gXD6a0__rAVBv1hbV7qtt4Ot5Wdx15JhF02TMd2QJd0,3179
|
14
14
|
KekikStream/Core/Plugin/PluginLoader.py,sha256=yZxMug-OcJ5RBm4fQkoquKrZxcBU7Pvt4IcY-d0WU8g,3393
|
15
15
|
KekikStream/Core/Plugin/PluginManager.py,sha256=CZVg1eegi8vfMfccx0DRV0Box8kXz-aoULTQLgbPbvM,893
|
16
16
|
KekikStream/Core/Plugin/PluginModels.py,sha256=ZZJUXbC0G2k0DU7Wpbf0rwjn7spywpiaLIHE7kLajhk,2533
|
17
17
|
KekikStream/Core/UI/UIManager.py,sha256=T4V_kdTTWa-UDamgLSKa__dWJuzcvRK9NuwBlzU9Bzc,1693
|
18
|
-
KekikStream/Extractors/CloseLoad.py,sha256=
|
18
|
+
KekikStream/Extractors/CloseLoad.py,sha256=w_Wag5DUPTfdXbTTI1kQNje1BHD0aFWE3KOVZHFFmZo,1462
|
19
19
|
KekikStream/Extractors/ContentX.py,sha256=u1sDdM79MNx9OdPTPcAA0OQDS7537IO8aJlffxhMi8c,2976
|
20
20
|
KekikStream/Extractors/FourCX.py,sha256=4FrMj1IZBBpN_g1P6S3A-8eUu7QFwlt4fJXzJ7vfe0Q,221
|
21
21
|
KekikStream/Extractors/FourPichive.py,sha256=iq3BCUbih1UVF4y4BIWO--0hX5jP2nxqesNx3MGP3kQ,234
|
@@ -48,16 +48,16 @@ KekikStream/Plugins/DiziYou.py,sha256=_4ZV1T7Pco1_Hvbu9--QeDeU7xx_OfqtMWTNTAg2IY
|
|
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=
|
52
|
-
KekikStream/Plugins/JetFilmizle.py,sha256=
|
53
|
-
KekikStream/Plugins/RecTV.py,sha256=
|
54
|
-
KekikStream/Plugins/SezonlukDizi.py,sha256=
|
55
|
-
KekikStream/Plugins/Shorten.py,sha256=
|
56
|
-
KekikStream/Plugins/SineWix.py,sha256=
|
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.
|
51
|
+
KekikStream/Plugins/HDFilmCehennemi.py,sha256=RcO2nPQ60WiwcB0QnmD4z1lVN5JTAJOQkk-VfNUTLr8,8749
|
52
|
+
KekikStream/Plugins/JetFilmizle.py,sha256=Hi_yzjUyTQryx-4kTfxNdNSqqQcwodc_JJULOTKTrBA,5483
|
53
|
+
KekikStream/Plugins/RecTV.py,sha256=rjsaz1OZGqJAHHvmm1rzpD99K23jb9rx55zhu03BPOk,7247
|
54
|
+
KekikStream/Plugins/SezonlukDizi.py,sha256=ri6_QE7aqh0Z_1iSza5rK6R-BABhd4HVEBH1sWmJoqs,4534
|
55
|
+
KekikStream/Plugins/Shorten.py,sha256=dDYt89WX-CcDhJAAV2A4zaD4xcZa8aN6-YcAcseyVo4,8948
|
56
|
+
KekikStream/Plugins/SineWix.py,sha256=cFqwn8B4M-WJWJlMuCrvv0JyKPv953iDqCLbGyy8Xu0,7145
|
57
|
+
KekikStream/Plugins/UgurFilm.py,sha256=sRwkXby6REdrxl6W57rRjYzgxR8SGz6m1AqWRpDiDW0,3022
|
58
|
+
kekikstream-1.3.3.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
59
|
+
kekikstream-1.3.3.dist-info/METADATA,sha256=UOKs3tK1DRqY07gyhRlvVWyvXT9_3tBjSFLyOZtL4-U,4508
|
60
|
+
kekikstream-1.3.3.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
61
|
+
kekikstream-1.3.3.dist-info/entry_points.txt,sha256=dFwdiTx8djyehI0Gsz-rZwjAfZzUzoBSrmzRu9ubjJc,50
|
62
|
+
kekikstream-1.3.3.dist-info/top_level.txt,sha256=DNmGJDXl27Drdfobrak8KYLmocW_uznVYFJOzcjUgmY,12
|
63
|
+
kekikstream-1.3.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|