mirror of
https://github.com/ihabunek/twitch-dl
synced 2024-08-30 18:32:25 +00:00
19 lines
338 B
Python
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
|