KekikStream 2.0.3__py3-none-any.whl → 2.0.5__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/Extractors/ContentX.py +13 -0
- KekikStream/Extractors/DonilasPlay.py +86 -0
- KekikStream/Extractors/Odnoklassniki.py +6 -0
- KekikStream/Extractors/PeaceMakerst.py +6 -0
- KekikStream/Extractors/RapidVid.py +6 -0
- KekikStream/Extractors/SetPlay.py +7 -1
- KekikStream/Extractors/VCTPlay.py +41 -0
- KekikStream/Extractors/VidMoly.py +6 -0
- KekikStream/Plugins/BelgeselX.py +204 -0
- KekikStream/Plugins/Dizilla.py +22 -14
- KekikStream/Plugins/FilmMakinesi.py +1 -1
- KekikStream/Plugins/FilmModu.py +6 -2
- KekikStream/Plugins/FullHDFilmizlesene.py +1 -1
- KekikStream/Plugins/HDFilmCehennemi.py +1 -1
- KekikStream/Plugins/JetFilmizle.py +1 -1
- KekikStream/Plugins/KultFilmler.py +1 -1
- KekikStream/Plugins/RoketDizi.py +17 -24
- KekikStream/Plugins/SelcukFlix.py +51 -52
- KekikStream/Plugins/SetFilmIzle.py +243 -0
- KekikStream/Plugins/SezonlukDizi.py +28 -7
- KekikStream/Plugins/Sinefy.py +11 -8
- KekikStream/Plugins/SinemaCX.py +3 -7
- KekikStream/Plugins/SuperFilmGeldi.py +1 -1
- KekikStream/Plugins/UgurFilm.py +1 -1
- {kekikstream-2.0.3.dist-info → kekikstream-2.0.5.dist-info}/METADATA +1 -1
- {kekikstream-2.0.3.dist-info → kekikstream-2.0.5.dist-info}/RECORD +30 -31
- KekikStream/Extractors/ContentX_.py +0 -40
- KekikStream/Extractors/Odnoklassniki_.py +0 -11
- KekikStream/Extractors/PeaceMakerst_.py +0 -7
- KekikStream/Extractors/RapidVid_.py +0 -7
- KekikStream/Extractors/VidMoly_.py +0 -7
- {kekikstream-2.0.3.dist-info → kekikstream-2.0.5.dist-info}/WHEEL +0 -0
- {kekikstream-2.0.3.dist-info → kekikstream-2.0.5.dist-info}/entry_points.txt +0 -0
- {kekikstream-2.0.3.dist-info → kekikstream-2.0.5.dist-info}/licenses/LICENSE +0 -0
- {kekikstream-2.0.3.dist-info → kekikstream-2.0.5.dist-info}/top_level.txt +0 -0
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
|
|
2
|
-
|
|
3
|
-
from KekikStream.Extractors.ContentX import ContentX
|
|
4
|
-
|
|
5
|
-
# DPlayer82 Family - https://dplayer82.site subdomains
|
|
6
|
-
class SNDPlayer(ContentX):
|
|
7
|
-
name = "SNDPlayer"
|
|
8
|
-
main_url = "https://sn.dplayer82.site"
|
|
9
|
-
|
|
10
|
-
class FourDPlayer(ContentX):
|
|
11
|
-
name = "FourDPlayer"
|
|
12
|
-
main_url = "https://four.dplayer82.site"
|
|
13
|
-
|
|
14
|
-
class ORGDPlayer(ContentX):
|
|
15
|
-
name = "ORGDPlayer"
|
|
16
|
-
main_url = "https://org.dplayer82.site"
|
|
17
|
-
|
|
18
|
-
# Hotlinger
|
|
19
|
-
class Hotlinger(ContentX):
|
|
20
|
-
name = "Hotlinger"
|
|
21
|
-
main_url = "https://hotlinger.com"
|
|
22
|
-
|
|
23
|
-
# Pichive Family
|
|
24
|
-
class Pichive(ContentX):
|
|
25
|
-
name = "Pichive"
|
|
26
|
-
main_url = "https://pichive.me"
|
|
27
|
-
|
|
28
|
-
class FourPichive(ContentX):
|
|
29
|
-
name = "FourPichive"
|
|
30
|
-
main_url = "https://four.pichive.me"
|
|
31
|
-
|
|
32
|
-
# PlayRu Family
|
|
33
|
-
class FourPlayRu(ContentX):
|
|
34
|
-
name = "FourPlayRu"
|
|
35
|
-
main_url = "https://four.playru.net"
|
|
36
|
-
|
|
37
|
-
# CX Family
|
|
38
|
-
class FourCX(ContentX):
|
|
39
|
-
name = "FourCX"
|
|
40
|
-
main_url = "https://four.contentx.me"
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
|
|
2
|
-
|
|
3
|
-
from KekikStream.Extractors.Odnoklassniki import Odnoklassniki
|
|
4
|
-
|
|
5
|
-
class OkRuHTTP(Odnoklassniki):
|
|
6
|
-
name = "OkRuHTTP"
|
|
7
|
-
main_url = "http://ok.ru"
|
|
8
|
-
|
|
9
|
-
class OkRuSSL(Odnoklassniki):
|
|
10
|
-
name = "OkRuSSL"
|
|
11
|
-
main_url = "https://ok.ru"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|