ytdl-sub/src/ytdl_sub/validators
Jesse Bannon 5e335b195c
[FEATURE] Allow YAML maps and lists in overrides, convert to script format (#956)
Adds the ability to create map and list-based override variables. 

For example, you can now create lists like this:
```
overrides:
  urls:
    - "https://...1"
    - "https://...2"
```
which is equivalent to:
```
overrides:
  urls: >-
    {
      [
        "https://...1",
        "https://...2",
      ]
    }
```

Likewise, maps can now look like:
```
overrides:
  music_video_category:
    concerts:
      - "https://...1"
      - "https://...2"
    interviews:
      - "https://...3"
```
which is equivalent to:
```
overrides:
  music_video_category: >-
    {
      "concerts": [
        "https://...1",
        "https://...2"
      ],
      "interviews": [
        "https://...3"
      ]
    }
```
2024-06-02 20:02:48 -07:00
..
__init__.py setup cfg 2022-04-26 07:19:53 +00:00
audo_codec_validator.py [FEATURE] Support best codec type in audio_extract (#700) 2023-09-02 00:50:26 -07:00
file_path_validators.py [BACKEND][HUGE] Function Support in variable syntax (#838) 2023-12-18 16:08:15 -08:00
nfo_validators.py [BACKEND] output_directory_nfo_tags to support source vars (#239) 2022-09-17 11:11:37 -07:00
regex_validator.py [FEATURE] Chapters plugin with SponsorBlock support (#178) 2022-08-15 17:01:03 -07:00
source_variable_validator.py [BACKEND] Validate override variable names (#845) 2023-12-18 17:11:25 -08:00
strict_dict_validator.py [FEATURE] Subtitles support via Subtitles plugin (#169) 2022-08-12 09:58:08 -07:00
string_datetime.py [BACKEND][HUGE] Function Support in variable syntax (#838) 2023-12-18 16:08:15 -08:00
string_formatter_validators.py [FEATURE] Allow YAML maps and lists in overrides, convert to script format (#956) 2024-06-02 20:02:48 -07:00
string_select_validator.py setup cfg 2022-04-26 07:19:53 +00:00
validators.py [DEV] Bump pylint from 2.13.5 to 3.1.0 (#972) 2024-04-28 10:40:15 -07:00