* [FEATURE] Add support to scrape chapters from comments * tested for comments * remove timestamps file * change order of docstrings
62 lines
2 KiB
Python
62 lines
2 KiB
Python
from typing import List
|
|
|
|
|
|
class KwargKeys:
|
|
keys: List[str] = []
|
|
backend_keys: List[str] = []
|
|
|
|
|
|
def _(key: str, backend: bool = False) -> str:
|
|
if backend:
|
|
assert key not in KwargKeys.backend_keys
|
|
KwargKeys.backend_keys.append(key)
|
|
else:
|
|
assert key not in KwargKeys.keys
|
|
KwargKeys.keys.append(key)
|
|
return key
|
|
|
|
|
|
SOURCE_ENTRY = _("source_entry", backend=True)
|
|
SOURCE_INDEX = _("source_index")
|
|
SOURCE_COUNT = _("source_count")
|
|
SOURCE_TITLE = _("source_title")
|
|
SOURCE_UID = _("source_uid")
|
|
SOURCE_DESCRIPTION = _("source_description")
|
|
SOURCE_WEBPAGE_URL = _("source_webpage_url")
|
|
SOURCE_UPLOADER = _("source_uploader")
|
|
SOURCE_UPLOADER_ID = _("source_uploader_id")
|
|
SOURCE_UPLOADER_URL = _("source_uploader_url")
|
|
|
|
PLAYLIST_ENTRY = _("playlist_entry", backend=True)
|
|
PLAYLIST_WEBPAGE_URL = _("playlist_webpage_url")
|
|
PLAYLIST_INDEX = _("playlist_index")
|
|
PLAYLIST_COUNT = _("playlist_count")
|
|
PLAYLIST_MAX_UPLOAD_YEAR = _("playlist_max_upload_year")
|
|
PLAYLIST_MAX_UPLOAD_YEAR_TRUNCATED = _("playlist_max_upload_year_truncated")
|
|
PLAYLIST_TITLE = _("playlist_title")
|
|
PLAYLIST_DESCRIPTION = _("playlist_description")
|
|
PLAYLIST_UID = _("playlist_uid")
|
|
PLAYLIST_UPLOADER = _("playlist_uploader")
|
|
PLAYLIST_UPLOADER_ID = _("playlist_uploader_id")
|
|
PLAYLIST_UPLOADER_URL = _("playlist_uploader_url")
|
|
|
|
DOWNLOAD_INDEX = _("download_index", backend=True)
|
|
UPLOAD_DATE_INDEX = _("upload_date_index", backend=True)
|
|
REQUESTED_SUBTITLES = _("requested_subtitles", backend=True)
|
|
CHAPTERS = _("chapters", backend=True)
|
|
YTDL_SUB_CUSTOM_CHAPTERS = _("ytdl_sub_custom_chapters", backend=True)
|
|
SPONSORBLOCK_CHAPTERS = _("sponsorblock_chapters", backend=True)
|
|
SPLIT_BY_CHAPTERS_PARENT_ENTRY = _("split_by_chapters_parent_entry", backend=True)
|
|
COMMENTS = _("comments", backend=True)
|
|
UID = _("id")
|
|
EXTRACTOR = _("extractor")
|
|
EPOCH = _("epoch")
|
|
CHANNEL = _("channel")
|
|
EXT = _("ext")
|
|
TITLE = _("title")
|
|
DESCRIPTION = _("description")
|
|
WEBPAGE_URL = _("webpage_url")
|
|
UPLOAD_DATE = _("upload_date")
|
|
UPLOADER = _("uploader")
|
|
UPLOADER_ID = _("uploader_id")
|
|
UPLOADER_URL = _("uploader_url")
|