ytdl-sub/src/ytdl_sub/config
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
..
plugin [DEV] Bump pylint from 2.13.5 to 3.1.0 (#972) 2024-04-28 10:40:15 -07:00
validators [DEV] Bump pylint from 2.13.5 to 3.1.0 (#972) 2024-04-28 10:40:15 -07:00
__init__.py setup cfg 2022-04-26 07:19:53 +00:00
config_file.py [BACKEND][HUGE] Function Support in variable syntax (#838) 2023-12-18 16:08:15 -08:00
config_validator.py [BUGFIX] Fix usage of ~ in paths (#981) 2024-05-10 19:57:48 -07:00
defaults.py [FEATURE] Ability to change download archive name (#643) 2023-06-30 11:51:52 -07:00
overrides.py [FEATURE] Allow YAML maps and lists in overrides, convert to script format (#956) 2024-06-02 20:02:48 -07:00
preset.py [FEATURE] Automatically handle playlists ordered in reverse (#948) 2024-04-01 04:24:41 -07:00
preset_options.py [FEATURE] Toggle date_range to break or not (#904) 2024-01-18 16:23:02 -08:00