KekikStream 0.0.3__tar.gz → 0.0.7__tar.gz

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.
Files changed (35) hide show
  1. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Core/ExtractorBase.py +1 -1
  2. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Core/MediaHandler.py +5 -1
  3. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Core/PluginBase.py +1 -1
  4. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Extractors/CloseLoad.py +0 -1
  5. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Extractors/MailRu.py +0 -2
  6. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Extractors/VidMoxy.py +0 -2
  7. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream.egg-info/PKG-INFO +6 -2
  8. {kekikstream-0.0.3 → kekikstream-0.0.7}/PKG-INFO +6 -2
  9. {kekikstream-0.0.3 → kekikstream-0.0.7}/README.md +4 -0
  10. {kekikstream-0.0.3 → kekikstream-0.0.7}/setup.py +3 -3
  11. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/CLI/__init__.py +0 -0
  12. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Core/ExtractorLoader.py +0 -0
  13. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Core/ExtractorModels.py +0 -0
  14. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Core/PluginLoader.py +0 -0
  15. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Core/PluginModels.py +0 -0
  16. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Core/__init__.py +0 -0
  17. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Managers/ExtractorManager.py +0 -0
  18. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Managers/MediaManager.py +0 -0
  19. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Managers/PluginManager.py +0 -0
  20. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Managers/UIManager.py +0 -0
  21. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Managers/__init__.py +0 -0
  22. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Plugins/FilmMakinesi.py +0 -0
  23. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Plugins/FullHDFilmizlesene.py +0 -0
  24. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/Plugins/UgurFilm.py +0 -0
  25. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/__init__.py +0 -0
  26. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/__main__.py +0 -0
  27. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream/requirements.txt +0 -0
  28. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream.egg-info/SOURCES.txt +0 -0
  29. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream.egg-info/dependency_links.txt +0 -0
  30. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream.egg-info/entry_points.txt +0 -0
  31. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream.egg-info/requires.txt +0 -0
  32. {kekikstream-0.0.3 → kekikstream-0.0.7}/KekikStream.egg-info/top_level.txt +0 -0
  33. {kekikstream-0.0.3 → kekikstream-0.0.7}/LICENSE +0 -0
  34. {kekikstream-0.0.3 → kekikstream-0.0.7}/MANIFEST.in +0 -0
  35. {kekikstream-0.0.3 → kekikstream-0.0.7}/setup.cfg +0 -0
@@ -12,7 +12,7 @@ class ExtractorBase(ABC):
12
12
  def __init__(self):
13
13
  self.oturum = AsyncClient(
14
14
  headers = {
15
- "User-Agent" : "keyiflerolsun/KekikStream",
15
+ "User-Agent" : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5)",
16
16
  "Accept" : "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
17
17
  },
18
18
  timeout = Timeout(10.0),
@@ -31,8 +31,10 @@ class MediaHandler:
31
31
  subprocess.run(vlc_command, check=True)
32
32
  except subprocess.CalledProcessError as e:
33
33
  konsol.print(f"[red]VLC oynatma hatası: {e}[/red]")
34
+ konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
34
35
  except FileNotFoundError:
35
36
  konsol.print("[red]VLC bulunamadı! VLC kurulu olduğundan emin olun.[/red]")
37
+ konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
36
38
 
37
39
  def play_with_mpv(self, extract_data: ExtractResult):
38
40
  try:
@@ -54,5 +56,7 @@ class MediaHandler:
54
56
  subprocess.run(mpv_command, check=True)
55
57
  except subprocess.CalledProcessError as e:
56
58
  konsol.print(f"[red]mpv oynatma hatası: {e}[/red]")
59
+ konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
57
60
  except FileNotFoundError:
58
- konsol.print("[red]mpv bulunamadı! mpv kurulu olduğundan emin olun.[/red]")
61
+ konsol.print("[red]mpv bulunamadı! mpv kurulu olduğundan emin olun.[/red]")
62
+ konsol.print({"title": self.title, "url": extract_data.url, "headers": self.headers})
@@ -11,7 +11,7 @@ class PluginBase(ABC):
11
11
  def __init__(self):
12
12
  self.oturum = AsyncClient(
13
13
  headers = {
14
- "User-Agent" : "keyiflerolsun/KekikStream",
14
+ "User-Agent" : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5)",
15
15
  "Accept" : "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
16
16
  },
17
17
  timeout = Timeout(10.0),
@@ -2,7 +2,6 @@
2
2
 
3
3
  from KekikStream.Core import ExtractorBase, ExtractResult
4
4
  from parsel import Selector
5
- from httpx import AsyncClient
6
5
  from base64 import b64decode
7
6
 
8
7
  class CloseLoadExtractor(ExtractorBase):
@@ -1,8 +1,6 @@
1
1
  # Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
2
2
 
3
3
  from KekikStream.Core import ExtractorBase, ExtractResult
4
- from httpx import AsyncClient
5
- import json
6
4
 
7
5
  class MailRuExtractor(ExtractorBase):
8
6
  name = "MailRu"
@@ -1,7 +1,6 @@
1
1
  # Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
2
2
 
3
3
  from KekikStream.Core import ExtractorBase, ExtractResult
4
- from httpx import AsyncClient
5
4
  from Kekik.Sifreleme import Packer, HexCodec
6
5
  import re
7
6
 
@@ -10,7 +9,6 @@ class VidMoxy(ExtractorBase):
10
9
  main_url = "https://vidmoxy.com"
11
10
 
12
11
  async def extract(self, url, referer=None) -> ExtractResult:
13
- self.oturum.headers.update({"User-Agent":"Mozilla/5.0"})
14
12
  if referer:
15
13
  self.oturum.headers.update({"Referer": referer})
16
14
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: KekikStream
3
- Version: 0.0.3
3
+ Version: 0.0.7
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
@@ -10,7 +10,7 @@ Keywords: KekikStream,KekikAkademi,keyiflerolsun
10
10
  Classifier: Development Status :: 5 - Production/Stable
11
11
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
12
12
  Classifier: Programming Language :: Python :: 3
13
- Requires-Python: >=3.12
13
+ Requires-Python: >=3.8
14
14
  Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
16
  Requires-Dist: setuptools
@@ -39,6 +39,10 @@ Requires-Dist: InquirerPy
39
39
 
40
40
  *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ı*
41
41
 
42
+ [![Video](https://github.com/user-attachments/assets/4171d982-3ab0-4ef3-81b4-b1d8be6f5e8a
43
+ )](https://github.com/user-attachments/assets/4171d982-3ab0-4ef3-81b4-b1d8be6f5e8a
44
+ )
45
+
42
46
  [![ForTheBadge made-with-python](https://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)
43
47
  [![ForTheBadge built-with-love](https://ForTheBadge.com/images/badges/built-with-love.svg)](https://GitHub.com/keyiflerolsun/)
44
48
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: KekikStream
3
- Version: 0.0.3
3
+ Version: 0.0.7
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
@@ -10,7 +10,7 @@ Keywords: KekikStream,KekikAkademi,keyiflerolsun
10
10
  Classifier: Development Status :: 5 - Production/Stable
11
11
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
12
12
  Classifier: Programming Language :: Python :: 3
13
- Requires-Python: >=3.12
13
+ Requires-Python: >=3.8
14
14
  Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
16
  Requires-Dist: setuptools
@@ -39,6 +39,10 @@ Requires-Dist: InquirerPy
39
39
 
40
40
  *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ı*
41
41
 
42
+ [![Video](https://github.com/user-attachments/assets/4171d982-3ab0-4ef3-81b4-b1d8be6f5e8a
43
+ )](https://github.com/user-attachments/assets/4171d982-3ab0-4ef3-81b4-b1d8be6f5e8a
44
+ )
45
+
42
46
  [![ForTheBadge made-with-python](https://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)
43
47
  [![ForTheBadge built-with-love](https://ForTheBadge.com/images/badges/built-with-love.svg)](https://GitHub.com/keyiflerolsun/)
44
48
 
@@ -16,6 +16,10 @@
16
16
 
17
17
  *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ı*
18
18
 
19
+ [![Video](https://github.com/user-attachments/assets/4171d982-3ab0-4ef3-81b4-b1d8be6f5e8a
20
+ )](https://github.com/user-attachments/assets/4171d982-3ab0-4ef3-81b4-b1d8be6f5e8a
21
+ )
22
+
19
23
  [![ForTheBadge made-with-python](https://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)
20
24
  [![ForTheBadge built-with-love](https://ForTheBadge.com/images/badges/built-with-love.svg)](https://GitHub.com/keyiflerolsun/)
21
25
 
@@ -6,7 +6,7 @@ from io import open
6
6
  setup(
7
7
  # ? Genel Bilgiler
8
8
  name = "KekikStream",
9
- version = "0.0.3",
9
+ version = "0.0.7",
10
10
  url = "https://github.com/keyiflerolsun/KekikStream",
11
11
  description = "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ı",
12
12
  keywords = ["KekikStream", "KekikAkademi", "keyiflerolsun"],
@@ -23,7 +23,7 @@ setup(
23
23
 
24
24
  # ? Paket Bilgileri
25
25
  packages = ["KekikStream"],
26
- python_requires = ">=3.12",
26
+ python_requires = ">=3.8",
27
27
  install_requires = [
28
28
  "setuptools",
29
29
  "wheel",
@@ -45,4 +45,4 @@ setup(
45
45
  long_description_content_type = "text/markdown",
46
46
  long_description = "".join(open("README.md", encoding="utf-8").readlines()),
47
47
  include_package_data = True
48
- )
48
+ )
File without changes
File without changes
File without changes