Framework for downloading Streaming Providers.
Project description
ProMediathek
ProMediathek ist ein Python-Framework zum Herunterladen von Inhalten verschiedener Streaming-Anbieter. Das Tool ermöglicht den Zugriff auf Filme und Serien von verschiedenen Mediatheken und stellt eine einheitliche Schnittstelle für deren Download bereit.
Funktionen
- Einheitliche API für verschiedene Streaming-Anbieter
- Unterstützung für Filme und Serien
- Unterstützung für verschiedene Download-Protokolle (Dash, HLS)
- DRM-Unterstützung (Widevine, PlayReady)
- Standard Kommandozeilen-Schnittstelle
Benutzung
Nach implementierung der Untenstehenden Boilerplate Datei, kann diese direkt benutzen werden.
Beim erstmaliegen ausführen wird eine login datei im ordner "logins" erstellt, wo die eventuell notwendigen Login Informationen eingetragen werden können.
Für alle Optionen:
python provider.py --help
Um alle Filme und Serien herunterzuladen:
python provider.py
Um alle Filme und Serien aufzulisten:
python provider.py --list
Um alle Filme und Serien herunterzuladen and nach änderungen bei bereits heruntergeladen zu suchen:
python provider.py --update
Um ein bestimmtes Video herunterzuladen:
Die ID bekommt man von --list
python provider.py --download-id <ID>
Boilerplate Provider Datei
from promediathek.baseclass import BaseAPI, BaseProvider
from promediathek.pakete.sammelpaket import MovieSammelpaket, EpisodeSammelpaket, Sammelpaket
from promediathek.download_protocols import Dash
from promediathek.utils.networking import SafeHTTPResponse
from promediathek.downloader import download_cli
class TemplateApi(BaseAPI):
# TODO change TEMPLATE to provider name
name = "TEMPLATE"
def anon_login(self) -> None:
# TODO optional if anon auth is required.
self.login_data.last_anon_login_data = "ANON LOGIN DATA"
raise NotImplementedError
def login(self) -> None:
# TODO implement login function and return True if successful.
self.login_data.last_login_data = "LOGIN DATA"
raise NotImplementedError
def prepare_anon_auth(self, **kwargs) -> dict:
"""
Prepares the anon request data e.g. Headers, Params, Cookies, etc. with the required anon auth data.
:param kwargs: Optional request data.
:return: The prepared request data as dict.
"""
# TODO optional if anon auth is required.
raise NotImplementedError
def request_was_anon_authed(self, response: SafeHTTPResponse | dict) -> bool:
"""
Determines if the request failed because of authentication.
:param response: The response to check.
:return: If True, call self._anon_login()
"""
# TODO optional if anon auth is required.
raise NotImplementedError
def prepare_auth(self, **kwargs) -> dict:
"""
Prepares the request data e.g. Headers, Params, Cookies, etc. with the required auth data.
:param kwargs: Optional request data.
:return: The prepared request data as dict.
"""
# TODO
raise NotImplementedError
def request_was_authed(self, response: SafeHTTPResponse | dict) -> bool:
"""
Determines if the request failed because of authentication.
Use with auth_get() and auth_post()
:param response: The response to check.
:return: If True, call self._login()
"""
# TODO
raise NotImplementedError
class TemplateDownloadProtocol(Dash):
def __init__(self, api: TemplateApi, sammelpaket: Sammelpaket):
self.api = api
super().__init__(sammelpaket=sammelpaket)
def get_manifest_url(self) -> str:
# TODO implement Function for getting the Dash/HLS manifest url.
# TODO Optional set required headers/cookies.
self.request_headers = {}
self.request_cookies = {}
raise NotImplementedError
def _get_drm_keys(self, challenge: bytes | str) -> bytes:
# TODO send challenge to provider, example ardplus
url = 'https://token.ardplus.de/token/wv/' + self.sammelpaket.id
response = self.api.auth_post(url, data=challenge)
return response.content
class TemplateProvider(BaseProvider):
api = TemplateApi()
def check_if_subscribed(self) -> bool:
# TODO
raise NotImplementedError
def search_id(self, search_id: str) -> dict:
# TODO
raise NotImplementedError
def search(self, search_term: str):
# TODO: Optional for Speed
return super().search(search_term)
def get_all_movies(self) -> list[MovieSammelpaket]:
# TODO
movie_pakets = []
for movie in []:
movie_pakets.append(MovieSammelpaket(
type="movie",
provider=self.name,
id=movie['id'],
titel=movie['title'],
description=movie['shortSynopsis'],
movie_thumbnail_vertical=movie['poster_url'],
movie_thumbnail_horizontal=movie['banner_url']
))
return movie_pakets
def get_all_episodes(self) -> list[EpisodeSammelpaket]:
# TODO
episode_pakets = []
for series in []:
for season in []:
for episode in []:
episode_pakets.append(EpisodeSammelpaket(
type="episode",
provider=self.name,
id=episode['id'],
titel=episode['title'],
description=episode['description'],
series_thumbnail_vertical=episode['series_poster_url'],
series_thumbnail_horizontal=episode['series_banner_url'],
series_title=series['title'],
series_id=series['id'],
series_description=series['description'],
season_number=str(season['season_number']),
season_id=season['id'],
episode_number=str(episode['episode_number']),
episode_thumbnail_vertical=None,
episode_thumbnail_horizontal=None
))
return episode_pakets
def get_downloader(self, sammelpaket: Sammelpaket) -> TemplateDownloadProtocol:
return TemplateDownloadProtocol(api=self.api, sammelpaket=sammelpaket)
if __name__ == '__main__':
download_cli(TemplateProvider())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file promediathek-0.0.6.tar.gz.
File metadata
- Download URL: promediathek-0.0.6.tar.gz
- Upload date:
- Size: 50.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df589917ca38e817d4510affd9fba9ab4b5a9c8d715746c3e5f61014eab6e053
|
|
| MD5 |
507d6fce20fbf6da5f57cd137b4350f1
|
|
| BLAKE2b-256 |
58212de4405453e6915b2224afe0598a4afc246f5b20fa1ad68e2dd427f20dd7
|
File details
Details for the file promediathek-0.0.6-py3-none-any.whl.
File metadata
- Download URL: promediathek-0.0.6-py3-none-any.whl
- Upload date:
- Size: 58.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4467a9ab3e6f90863fd393af863193c74b3de125b7e173db8c2e708f19c2d013
|
|
| MD5 |
e9a954f651c8f60a452171404f1371cb
|
|
| BLAKE2b-256 |
50314c0d3d8ee75ccc94c5ace7f3a9f70f44261e4e15125742c76f171a5ab329
|