twitch-dl/twitchdl/entities.py

19 lines
338 B
Python
Raw Normal View History

2024-03-23 09:50:42 +00:00
from dataclasses import dataclass
@dataclass
class DownloadOptions:
auth_token: str | None
chapter: int | None
dry_run: bool
end: int | None
format: str
keep: bool
no_join: bool
overwrite: bool
output: str
quality: str | None
rate_limit: str | None
start: int | None
max_workers: int