twitch-dl/twitchdl/entities.py
2024-03-29 08:43:30 +01:00

19 lines
338 B
Python

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